时间:2021-05-20
这篇文章主要介绍了springboot整合通用mapper过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
找到springboot工程下的pom.xml文件,导入如下的依赖jar包
<!--配置通用Mapper start--> <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-spring-boot-starter</artifactId> <version>2.1.5</version> </dependency> <!--通用Mapper end-->配置UserDao接口,继承通用mapper,注意泛型
@Repositorypublic interface UserDao extends Mapper<User> {}Service的实现层
@Service("userService")public calss UserServiceImpl implements UserService{ @Autowired private UserDao userDao; @Override public List<User> list(){ return userDao.selectALL(); }}User实体类配置通用文件mapper的主键和主键返回策略
import javax.persistence.GeneratedValue;import javax.persistence.GenerationType;import javax.persistence.Id;public class User { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Integer id; private String name; private Integer age; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; }}配置入口类Application
import tk.mybatis.spring.annotation.MapperScan;//把MapperScan的导入路径换成tk.mybatis.spring.annotation.MapperScanimport org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.transaction.annotation.EnableTransactionManagement;@SpringBootApplication@EnableTransactionManagement //开启书屋管理注解模式 最新的版本可以省略@MapperScan("com.xz.springboot.mapper") //扫描该包下所有的接口并为该接口生成实现类public class Springboot01Application { public static void main(String[] args) { SpringApplication.run(Springboot01Application.class, args); }}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
SpringBoot整合Gson整合Fastjson一、SpringBoot整合Gson1、pom依赖#在SpringBoot中给我们自带了json解析器,我们
为了让我提供的通用Mapper的boot-starter同时兼容SpringBoot1.x和2.x,增加了这么一个工具类。在SpringBoot中,能够直接注入
我就废话不多说了,大家还是直接看代码吧~补充知识:Springboot整合mybatis继承mapper接口,扩展自己的dao接口这里主要介绍Mybatis-G
这篇文章主要介绍了SpringBoot整合SpringCache及Redis过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值
这篇文章主要介绍了Springboot整合MybatisPlus的实现过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要