0
我有兩個實體類Hibernate更新查詢:如何設置默認值?
class User {
Integer userId;
String userName;
UserType userType;
}
和
class UserType {
Integer typeId;
String type;
Set<User> userList;
}
我如何可以設置所有user.userType
其中user.userType=null
new UserType()
通過HQL更新查詢?
我是hibernate的新手。
閱讀**更新查詢示例**此鏈接的部分:http://www.mkyong.com/hibernate/hibernate-query-examples-hql/ –