mybatis plus下划线转驼峰
时间: 2023-04-23 14:05:39 浏览: 282
mybatis mapper映射实体类,多个字符下划线转驼峰
在MyBatis Plus中,可以通过配置实现下划线转驼峰的功能。具体步骤如下:
1. 在配置文件中添加以下配置:
```
mybatis-plus:
configuration:
map-underscore-to-camel-case: true
```
2. 在实体类中使用驼峰命名法命名属性,例如:
```
public class User {
private Long userId;
阅读全文