jdk5.0中增加了新的功能annotation,基本的意思是可以执行代码中的@*****语句,具体怎样使用请查看资料,本文中的方法是基于jdk5.0的平台,同时要下载hibernate包中的hibernate-annotations-3.3.0.ga,将其中的*.jar加入到你的classpath中。
要使用annotation,先要修改你的hibernateutil类,请看:
sessionfactory= new configuration().configure().buildsessionfactory();
修改为:
sessionfactory = new
annotationconfiguration().configure().buildsessionfactory();
同样要修改你的pojo:
@enumerated(enumtype.string)
public gender getgender() {
return gender;
}
只要修改get***()即可。
同时要导入:
impport javax.persistence.enumtype
最后别忘了一个基本的注册修改:
在原先的hibernate.cfg.xml中要注册一个pojo采用这样的方式:
采用annotation后改为:
通过以上步骤就可以简化enum,对比方法一,方法二只是由hibernate-annotations实现了hibernate中的enumtype.方法一是由程序员自己来实现。
希望能帮到你,嘿嘿!
任务占坑