要引入MyBatis-Plus,你需要在pom.xml文件中添加MyBatis-Plus的依赖。例如:
<dependencies>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.3</version>
</dependency>
</dependencies>
然后,你需要在Spring Boot的配置文件中配置MyBatis-Plus的相关配置。例如:
mybatis-plus.mapper-locations=classpath:mapper/*.xml
mybatis-plus.type-aliases-package=com.example.model
@TableName("jsh_bom_custome2r")
接下来,你可以创建MyBatis-Plus的Mapper接口。例如:
public interface UserMapper extends BaseMapper<User> {
}
在这个例子中,UserMapper继承了MyBatis-Plus提供的BaseMapper接口,它已经包含了一些常用的数据库操作方法,如插入、更新、删除和查询等。
最后,你可以在Spring Boot的Service或Controller中使用MyBatis-Plus的Mapper接口进行数据库操作。例如:
@Service
public class UserService {
@Autowired
private UserMapper userMapper;
public User getUserById(Long id) {
return userMapper.selectById(id);
}
public List<User> getAllUsers() {
return userMapper.selectList(null);
}
public void insertUser(User user) {
userMapper.insert(user);
}
public void updateUser(User user) {
userMapper.updateById(user);
}
public void deleteUser(Long id) {
userMapper.deleteById(id);
}
}
以上就是在Spring Boot项目中引入MyBatis-Plus的基本步骤。你可以根据自己的需求进行配置和使用。