jpa 实体bean中字段名称和数据库中字段名称对应的方式

在学习使用jpa的时候发现查询数据库的时候有些字段没有获取到,都是使用了驼峰命名的多个单词组成的字段。查看服务打印的log后发现自动生成的查询语句对于驼峰命名的多个单词组成的字段连接方式是以"_"连接。比如,在实体里面的字段是userName,数据库中的字段也是userName,但是自动生成的sql语句中的字段是user_name,对应不上,所以找不到。

解决方式是在配置文件application.properties中添加如下配置:

spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl

然后在对应的实体字段注解中添加name="数据库中的字段",如下:

    @Column(nullable = false,name = "userName")
    private String userName;

这样就可以配置自动生成的sql语句也是用设置好的字段名了。

其他配置如下:

1.使用自己的命名规则,就是上面提到的

spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl

2.使用遇到大写就加"_"的方式,就是默认的那种

spring.jpa.hibernate.naming.physical-strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy

 

你可能感兴趣的:(springboot,spring,boot,hibernate)