我有一个jar文件,我想要添加一些映射文件作为hibernate.cfg.xml中的映射资源,因为我在org.hibernate.cfg.Configuration中添加了JAR ..
Configuration cfg=new Configuration();
cfg.addJar(new File("C:\\Users\\amoghs\\.m2\\repository\\mkcl\\os\\personServiceBL\\1.0.1\\personServiceBL-1.0.1.jar"));
cfg.configure("hibernate.cfg.xml");
SchemaExport se=new SchemaExport(cfg);
se.setDelimiter("\n#-----------------------------------------------------------------------------------");
se.setOutputFile("E:\\ADFCreateScript.sql");
se.create(true,true);
在hibernate.cfg.xml中我添加了..
<mapping resource="org/mkcl/personservices/models/Person.hbm.xml" />
Person.hbm.xml这个xml文件在jar文件中。
当我执行java应用程序时,我得到了这个异常......
Exception in thread "main" org.hibernate.InvalidMappingException: Could not parse mapping document from input stream
at org.hibernate.cfg.Configuration$MetadataSourceQueue.processHbmXml(Configuration.java:3415)
at org.hibernate.cfg.Configuration$MetadataSourceQueue.processHbmXmlQueue(Configuration.java:3404)
at org.hibernate.cfg.Configuration$MetadataSourceQueue.processMetadata(Configuration.java:3392)
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1341)
at org.hibernate.cfg.Configuration.generateDropSchemaScript(Configuration.java:931)
at org.hibernate.tool.hbm2ddl.SchemaExport.<init>(SchemaExport.java:188)
at org.hibernate.tool.hbm2ddl.SchemaExport.<init>(SchemaExport.java:156)
at mkcl.accreditation.model.GenrateSchema.main(GenrateSchema.java:34)
Caused by: org.hibernate.PropertyNotFoundException: field [countryCode] not found on java.util.List
at org.hibernate.property.DirectPropertyAccessor.getField(DirectPropertyAccessor.java:182)
at org.hibernate.property.DirectPropertyAccessor.getField(DirectPropertyAccessor.java:174)
at org.hibernate.property.DirectPropertyAccessor.getGetter(DirectPropertyAccessor.java:197)
at org.hibernate.internal.util.ReflectHelper.getter(ReflectHelper.java:253)
at org.hibernate.internal.util.ReflectHelper.reflectedPropertyClass(ReflectHelper.java:229)
at org.hibernate.mapping.SimpleValue.setTypeUsingReflection(SimpleValue.java:326)
at org.hibernate.cfg.HbmBinder.createProperty(HbmBinder.java:2286)
at org.hibernate.cfg.HbmBinder.bindComponent(HbmBinder.java:1994)
at org.hibernate.cfg.HbmBinder.createClassProperties(HbmBinder.java:2191)
at org.hibernate.cfg.HbmBinder.createClassProperties(HbmBinder.java:2141)
at org.hibernate.cfg.HbmBinder.bindRootPersistentClassCommonValues(HbmBinder.java:407)
at org.hibernate.cfg.HbmBinder.bindRootClass(HbmBinder.java:322)
at org.hibernate.cfg.HbmBinder.bindRoot(HbmBinder.java:173)
at org.hibernate.cfg.Configuration$MetadataSourceQueue.processHbmXml(Configuration.java:3412)
任何人都可以帮助我吗?
答案 0 :(得分:1)
如果将整个jar添加到Hibernate Configuration
,则它包含的所有映射(* .hbm.xml)将自动添加到Configuration
。无需在hibernate.cfg.xml文件中添加以下行:
<mapping resource="org/mkcl/personservices/models/Person.hbm.xml"/>