使用hibernate annotations应该注意的地方

来源:百度文库 编辑:神马文学网 时间:2024/04/28 02:59:09
以前都是通过配置文件的方式实现,在这个项目中用到了annotations,结果老是出问题,而且有的正常有的不正常。。。找的头都大了。。。后来在网上不断的搜索终于找出问题,就导入的包有问题。。。  import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Transient;
import org.hibernate.annotations.Entity;//这是就出问题了哦

@Entity
@Table(name="test_person")
public class Person implements Serializable  上面红色的导包的时候导错了,应该是 import javax.persistence.Entity;  参考:http://apps.hi.baidu.com/share/detail/17437084