SpringBoot整合Mybatis
1.引入依赖
在pom.xml
中引入以下依赖:
<!-- SpringBoot整合Mybatis依赖 -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.4</version>
</dependency>
<!-- MySQL数据库驱动依赖 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
2.配置数据源
在application.properties
中添加以下配置:
# 配置数据库连接
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis_demo?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
spring.datasource.username=root
spring.datasource.password=root
# 配置Mybatis
mybatis.type-aliases-package=com.example.demo.entity
mybatis.mapper-locations=classpath:mapper/*.xml
3.创建Mapper
@Repository
@Mapper
public interface UserMapper {
/**
* 查询所有用户
*/
List<User> selectAll();
}
4.编写Service
@Service
public class UserService {
@Autowired
private UserMapper userMapper;
/**
* 查询所有用户
*/
public List<User> selectAll() {
return userMapper.selectAll();
}
}
5.编写Controller
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/list")
public List<User> userList() {
return userService.selectAll();
}
}
SpringBoot整合MybatisPlus
1.引入依赖
在pom.xml
中引入以下依赖:
<!-- SpringBoot整合MybatisPlus依赖 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.0.6</version>
</dependency>
<!-- 权限管理框架Shiro依赖 -->
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-all</artifactId>
<version>1.7.1</version>
</dependency>
2.配置数据源
在application.properties
中添加以下配置:
# 配置数据库连接
spring.datasource.url=jdbc:mysql://localhost:3306/plus_demo?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
spring.datasource.username=root
spring.datasource.password=root
# 配置MybatisPlus
mybatis-plus.mapper-locations=classpath:mapper/*.xml
mybatis-plus.type-aliases-package=com.example.demo.entity
3.创建Mapper
在mapper
包下创建UserMapper.java
文件:
@Repository
public interface UserMapper extends BaseMapper<User> {
}
4.编写Service
在service
包下创建UserService.java
文件:
@Service
public class UserService extends ServiceImpl<UserMapper, User> {
/**
* 查询所有用户
*/
public List<User> selectAll() {
return list();
}
}
5.编写Controller
在controller
包下创建UserController.java
文件:
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
// 查询所有用户
@GetMapping("/list")
public List<User> userList() {
return userService.selectAll();
}
}
MybatisPlus代码生成器示例
1.引入依赖
在pom.xml
中引入以下依赖:
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
<version>3.0.8</version>
</dependency>
2.配置代码生成器
在generator
包下创建CodeGenerator.java
文件:
public class CodeGenerator {
public static void main(String[] args) {
// 代码生成器
AutoGenerator mpg = new AutoGenerator();
// 全局配置
GlobalConfig gc = new GlobalConfig();
String projectPath = System.getProperty("user.dir");
gc.setOutputDir(projectPath + "/src/main/java");
gc.setAuthor("your name");
gc.setOpen(false);
gc.setSwagger2(true);
mpg.setGlobalConfig(gc);
// 数据源配置
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl("jdbc:mysql://localhost:3306/mybatis_plus_demo?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai");
dsc.setDriverName("com.mysql.cj.jdbc.Driver");
dsc.setUsername("root");
dsc.setPassword("root");
mpg.setDataSource(dsc);
// 包配置
PackageConfig pc = new PackageConfig();
pc.setParent("com.example.demo");
pc.setEntity("entity");
pc.setService("service");
pc.setServiceImpl("service.impl");
pc.setController("controller");
mpg.setPackageInfo(pc);
// 策略配置
StrategyConfig strategy = new StrategyConfig();
strategy.setNaming(NamingStrategy.underline_to_camel);
strategy.setColumnNaming(NamingStrategy.underline_to_camel);
strategy.setEntityLombokModel(true);
strategy.setRestControllerStyle(true);
strategy.setControllerMappingHyphenStyle(true);
mpg.setStrategy(strategy);
// 执行生成
mpg.execute();
}
}
3.执行生成代码
在CodeGenerator
类上右键点击Run Code Generator.main()
,即可生成代码。生成的代码包括各个层级的文件,可以根据需要进行删减或修改。
4.使用生成的代码
使用前需要修改application.properties
文件中的Mapper文件路径:
mybatis-plus.mapper-locations=classpath:mapper/*.xml,classpath:mapper/auto/*.xml
使用生成的代码,可以直接调用父类中的方法:
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
// 查询所有用户
@GetMapping("/list")
public List<User> userList() {
return userService.list();
}
}
以上就是SpringBoot整合Mybatis、MybatisPlus实现数据库访问功能的详细攻略。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:SpringBoot快速整合Mybatis、MybatisPlus(代码生成器)实现数据库访问功能 - Python技术站