我正在使用springboot从db接收jpa对象,并将其Map到model,但model中的列名与来自数据库的列名不同。我尝试使用setter从传入的数据库属性中设置model字段的值,但是该属性在父类中,因此它总是被设置为null。
tyg4sfes1#
假设您的字段名为foo,您可以使用@Column注解来声明一个具有不同名称的db列
@Column
class Model { // other fields @Column(name = "bar") private int foo; }
1条答案
按热度按时间tyg4sfes1#
假设您的字段名为foo,您可以使用
@Column
注解来声明一个具有不同名称的db列