springboot整合mybatis

springboot整合mybatis:
1、添加mybatis的pom文件:

org.mybatis.spring.boot
mybatis‐spring‐boot‐starter
1.3.1

2、配置数据库相关属性
3、使用MapperScan批量扫描所有的Mapper接口;
@MapperScan(value = “com.xxx.springboot.mapper”)
4、编写mybatis配置类,代码如下:

@org.springframework.context.annotation.Configuration
public class MyBatisConfig {

@Bean
public ConfigurationCustomizer configurationCustomizer(){
    return new ConfigurationCustomizer(){

        @Override
        public void customize(Configuration configuration) {
            configuration.setMapUnderscoreToCamelCase(true);
        }
    };
}

}
5、配置yml文件的mybatis信息
6、编写控制器类,代码如下:

@RestController
public class DeptController {

@Autowired
DepartmentMapper departmentMapper;

@Autowired
EmployeeMapper employeeMapper;


@GetMapping("/dept/{id}")
public Department getDepartment(@PathVariable("id") Integer id){
    return departmentMapper.getDeptById(id);
}

@GetMapping("/dept")
public Department insertDept(Department department){
    departmentMapper.insertDept(department);
    return department;
}

@GetMapping("/emp/{id}")
public Employee getEmp(@PathVariable("id") Integer id){
   return employeeMapper.getEmpById(id);
}

}
7、这个是getEmp表返回数据
{
“id”: 1,
“lastName”: “你很好”,
“gender”: 1,
“email”: “zmw1805@163.com”,
“dId”: 1
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值