SpringBoot学习3之数据库集成mybatis
作为一个Web框架,必然要与数据库打交道,这里介绍了如何将SpringBoot与mybatis进行集成的方法
添加相关依赖
pom.xml如下
1 | <!-- 使用数据源 --> |
在配置文件application-dev.yml中配置
1 | spring: |
创建实体类
1 | public class User { |
创建Mapper接口
1 |
|
创建Service
1 |
|
Controller中调用
1 |
|
查询成功!
作为一个Web框架,必然要与数据库打交道,这里介绍了如何将SpringBoot与mybatis进行集成的方法
pom.xml如下
1 | <!-- 使用数据源 --> |
1 | spring: |
1 | public class User { |
1 | @Mapper |
1 | @Service |
1 | @Autowired |
查询成功!