mybatis-plus查询表数据
时间: 2023-08-13 20:58:45 浏览: 145
使用MyBatis-Plus查询表数据可以通过以下步骤:
1. 创建一个Mapper接口,继承BaseMapper<T>,其中T是对应表的实体类。
```java
public interface MyTableMapper extends BaseMapper<MyTable> {
}
```
2. 在配置文件中配置Mapper的包路径和XML映射文件的路径。
```xml
<configuration>
<mappers>
<package name="com.example.mapper"/>
</mappers>
</configuration>
```
3. 在Mapper接口中定义查询方法。
```java
public interface MyTableMapper extends BaseMapper<MyTable> {
List<MyTable> selectAll();
}
```
4. 创建对应的XML映射文件,编写查询语句。
```xml
<mapper namespace="com.example.mapper.MyTableMapper">
<select id="selectAll" resultType="com.example.entity.MyTable">
SELECT * FROM my_table
</select>
</mapper>
```
5. 使用MyBatis-Plus的方法进行查询。
```java
@Autowired
private MyTableMapper myTableMapper;
public List<MyTable> getAllData() {
return myTableMapper.selectAll();
}
```
通过以上步骤,你就可以使用MyBatis-Plus查询表数据了。可以根据需要在Mapper接口中定义更多的查询方法。
阅读全文