`

org.hibernate.MappingException

阅读更多
log4j:WARN No appenders could be found for logger (org.hibernate.cfg.Environment).
log4j:WARN Please initialize the log4j system properly.
%%%% Error Creating SessionFactory %%%%
org.hibernate.MappingException: An association from the table author_book refers to an unmapped class: Author
	at org.hibernate.cfg.Configuration.secondPassCompileForeignKeys(Configuration.java:1252)
	at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1170)
	at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1286)
	at po.HibernateSessionFactory.<clinit>(HibernateSessionFactory.java:31)
	at po.Test.select(Test.java:17)
	at po.Test.main(Test.java:12)
%%%% Error Creating SessionFactory %%%%
org.hibernate.InvalidMappingException: Could not parse mapping document from resource po/Author.hbm.xml
	at org.hibernate.cfg.Configuration.addResource(Configuration.java:569)
	at org.hibernate.cfg.Configuration.parseMappingElement(Configuration.java:1587)
	at org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1555)
	at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1534)
	at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1508)
	at org.hibernate.cfg.Configuration.configure(Configuration.java:1428)
	at po.HibernateSessionFactory.rebuildSessionFactory(HibernateSessionFactory.java:69)
	at po.HibernateSessionFactory.getSession(HibernateSessionFactory.java:53)
	at po.Test.select(Test.java:17)
	at po.Test.main(Test.java:12)
Caused by: org.hibernate.DuplicateMappingException: Duplicate collection role mapping po.Author.bookSet
	at org.hibernate.cfg.Mappings.addCollection(Mappings.java:124)
	at org.hibernate.cfg.HbmBinder.createClassProperties(HbmBinder.java:2066)
	at org.hibernate.cfg.HbmBinder.createClassProperties(HbmBinder.java:2041)
	at org.hibernate.cfg.HbmBinder.bindRootPersistentClassCommonValues(HbmBinder.java:359)
	at org.hibernate.cfg.HbmBinder.bindRootClass(HbmBinder.java:273)
	at org.hibernate.cfg.HbmBinder.bindRoot(HbmBinder.java:144)
	at org.hibernate.cfg.Configuration.add(Configuration.java:669)
	at org.hibernate.cfg.Configuration.addInputStream(Configuration.java:504)
	at org.hibernate.cfg.Configuration.addResource(Configuration.java:566)
	... 9 more
Exception in thread "main" java.lang.NullPointerException
	at po.Test.select(Test.java:18)
	at po.Test.main(Test.java:12)




   修改的办法:
         在多对多的关系中使用myeclipse容易出现这种错误:
            
      比如:
 
     <set name="authorSet" table="author_book" inverse="true" cascade="save-update"  >
            <key column="bid"/>
            <many-to-many class="Author" column="aid"/>
        </set>

   

   在many-to-many 中class没有加上包名导致的以上错误:
   修改如下:
     <set name="authorSet" table="author_book" inverse="true" cascade="save-update"  >
            <key column="bid"/>
            <many-to-many class="com.ch.army.Author" column="aid"/>
        </set>

分享到:
评论

相关推荐

    hibernate错误解决方案

    nested exception is org.hibernate.MappingException: Repeated column in mapping for entity: com.xindeco.myregister.pojo.MyRegisterInfo column: password (should be mapped with insert="false" update=...

    Hibernate配置常见错误

    错误表现:尝试操作某个实体类时,出现“org.hibernate.MappingException: Unknown entity”错误,这意味着Hibernate并未识别到该实体类。 解决方案:确保实体类已添加@Entity注解,并且该类所在的包已被配置在...

    hibernate常见异常

    本文将介绍 Hibernate 中的一些常见异常,包括 net.sf.hibernate.MappingException、net.sf.hibernate.PropertyNotFoundException、org.hibernate.id.IdentifierGenerationException 以及 a different object with ...

    Spring3.1 集成 JBPM4.4

    NULL 博文链接:https://guoyinjian.iteye.com/blog/1259538

    JPA 开发中遇到的错误

    org.hibernate.MappingException: Unable to find column with logical name 这表示Hibernate在构建映射时未能找到与实体属性相对应的数据库列。确保实体类中的属性名称与数据库表中的列名相匹配,或者使用`@...

    Hibernate映射导致的几个异常

    - **MappingException: Error reading resource**:这通常意味着Hibernate在读取映射文件或配置文件时遇到了问题,可能是文件不存在、路径错误或格式不正确。确保`hibernate.cfg.xml`文件的位置正确,内容无误。 -...

    hibernate常见问题及处理.doc

    4. `org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save():` 此异常意味着在尝试保存对象前,对象的主键没有被正确设置。通常,这是由于在映射...

    hibernate教程从入门到精通第篇共四篇PPT学习教案.pptx

    在使用Hibernate时,可能会遇到`org.hibernate.MappingException: Unknown entity`这样的异常,这通常是因为在配置文件(如Hibernate.cfg.xml)中未指定实体的映射文件。例如,如果实体类为`...

    最经典的hibernate教程_从入门到精通3(hbiernate学习)

    首先,让我们解决异常`org.hibernate.MappingException: Unknown entity: com.aptech.jb.entity.TblUser`。这个异常通常是因为Hibernate没有找到指定的实体映射文件。解决方法是在`Hibernate.cfg.xml`配置文件中添加...

    hibernate ppt

    首先,出现 `org.hibernate.MappingException: Unknown entity` 异常通常是因为 Hibernate 没有找到指定的实体映射文件。在本例中,错误提示说没有在 Hibernate.cfg.xml 文件中添加 `&lt;mapping&gt;` 元素来指明 `...

    eclipse反向差件

    - **异常示例**:`org.hibernate.MappingException: Could not configure overrides from file`。 - **解决方法**:这通常是由于生成的`hibernate.reveng.xml`文件格式不正确导致的。解决方法是修改该文件的头部...

    EmbeddableTypes

    ( org.hibernate.MappingException: Repeated column in mapping for entity:YOUR_ENTITY ),因为表databsae不能具有重复的列名。 JPA定义了@AttributeOverride批注来处理此senario。 @AttributeOverrides({ @...

    hibernate配置properties

    jdbcPros.setProperty("hibernate.connection.driver_class", "org.gjt.mm.mysql.Driver"); jdbcPros.setProperty("hibernate.connection.url", "jdbc:mysql://localhost:3306/your_db"); jdbcPros.setProperty(...

    JSP 开发SSH整合异常解决办法

    而nested exception "org.hibernate.MappingException: Could not get constructor for org.hibernate.persister.entity.SingleTableEntityPersister"则直接指出了问题的根源,在于Hibernate无法找到或获取到用于...

    hibernate常见错误解决方案

    **MappingException: Error reading resource: hibernate/Hello_Bean.hbm.xml** **异常描述:** 此异常表示Hibernate在加载指定的映射文件时遇到了问题。 **解决方法:** - 检查映射文件路径是否正确。例如,确保...

    spring错误总结.txt

    在创建`sessionFactory` Bean时出现初始化失败,深层异常是`MappingException: could not instantiate id generator`。 **原因分析**: 这通常是因为Hibernate配置中的ID生成策略存在问题。 **解决方案**: 1. **...

Global site tag (gtag.js) - Google Analytics