Hibernate实体映射模板
多对一 |
<many-to-one name=“” class=“” column=“”/> |
一对多 (Set) |
<set name=""> <key column=""></key> <one-to-many class=""/> </set> |
多对多 (Set) |
<set name="" table=""> <key column=""></key> <many-to-many class="" column=""/> </set> |
增删改查所用的6个Action方法的模板
/** 列表 */
public String list() throws Exception { return"list"; }
/** 删除 */
public String delete() throws Exception { return"toList"; }
/** 添加页面 */
public String addUI() throws Exception { return"saveUI"; }
/** 添加 */
public String add() throws Exception { return"toList"; }
/** 修改页面 */
public String editUI() throws Exception { return"saveUI"; }
/** 修改 */
public String edit() throws Exception { return"toList"; }
Hibernate实体映射模板,布布扣,bubuko.com
原文地址:http://blog.csdn.net/ankeyuan/article/details/38532721