1、@Transient 使用场景:一般在模型中对应某一个字段的属性中的set和get方法中。作用是数据与数据库中不一一对应。如:
/*@Transient public String getModulename() {
return modulename;
}
public void setModulename(String modulename) {
this.modulename = modulename;
}*/
2、@ManyToOne
多对一。可以把另一个模型对应过来。在查询时,无需要联表查询。
@JoinColumn(name="moduleid",insertable=false,updatable=false)
@NotFound(action=NotFoundAction.IGNORE)
public CateModule getCateModule() {
return cateModule;
}
public void setCateModule(CateModule cateModule) {
this.cateModule = cateModule;
}
posted on 2012-12-03 11:09
老天 阅读(236)
评论(0) 编辑 收藏