若依 3.8.7版本springboot前后端分离 整合mabatis plus | 代码生成器修改为plus 版本
若依3.8.7版本的Spring Boot前后端分离整合MyBatis Plus代码生成器修改为Plus,可以通过以下步骤进行:
- 确保你的项目已经引入了MyBatis Plus依赖。
- 修改代码生成器模板,使其生成Plus代码。
- 修改生成的代码中的Mapper接口继承关系,改为继承
BaseMapper<T>
。 - 修改Service层的实现类,使其直接使用MyBatis Plus提供的
IService
接口或其实现类ServiceImpl<M, T>
。
以下是修改后的代码示例:
Mapper接口修改前:
public interface YourEntityMapper extends BaseMapper<YourEntity> {
// ...
}
Mapper接口修改后:
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
public interface YourEntityMapper extends BaseMapper<YourEntity> {
// ...
}
Service层接口修改前:
public interface YourEntityService {
// ...
}
Service层接口修改后:
import com.baomidou.mybatisplus.extension.service.IService;
public interface YourEntityService extends IService<YourEntity> {
// ...
}
Service层实现类修改前:
@Service
public class YourEntityServiceImpl implements YourEntityService {
@Autowired
private YourEntityMapper yourEntityMapper;
// ...
}
Service层实现类修改后:
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
@Service
public class YourEntityServiceImpl extends ServiceImpl<YourEntityMapper, YourEntity> implements YourEntityService {
// ...
}
确保你的代码生成器模板中已经支持Plus代码生成,然后使用代码生成器生成代码,代码中的Mapper、Service层等将自动使用MyBatis Plus的Plus功能。
评论已关闭