hibernate.cfg.xml *.hbm.xml 无自动提示 MyEclipse

这是因为在Myeclipe中没有关联相应的dtd文件的原因

解决方法:

在\hibernate-distribution-3.3.1.GA\project\core\src\main\resources\org\hibernate目录下面

找到:

hibernate-configuration-3.0.dtd 和 hibernate-mapping-3.0.dtd 文件

如果没有:可以去网上搜索,貌似我也有上传的吧...

http://download.csdn.net/detail/ahuangtaoa/4847797

http://download.csdn.net/detail/ahuangtaoa/4847783

window->preferences->Myeclipse->Files and Editors->xml->xml catalog->user Specified Entried 分别导入两个文件

location:dtd文件的绝对路径

key Type:URI(一定要选择啊)

key:分别对应:

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

映射文件:

<!DOCTYPE hibernate-mapping PUBLIC
  "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

类似下图:


你可能感兴趣的:(Hibernate,Hibernate,xml,xml,MyEclipse,MyEclipse)