现在的位置: 首页 > 编程语言 > 正文

Springboot整合通用mapper过程解析

2020年02月13日 编程语言 ⁄ 共 1735字 ⁄ 字号 评论关闭

这篇文章主要介绍了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); }}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

本文标题: Springboot整合通用mapper过程解析

以上就上有关Springboot整合通用mapper过程解析的全部内容,学步园全面介绍编程技术、操作系统、数据库、web前端技术等内容。

抱歉!评论已关闭.