Hibernate:无法在DDL上应用约束

时间:2013-03-16 05:26:24

标签: spring hibernate tomcat struts

我正在使用Struts / Springs / Hibernate和Tomcat 7.0,在尝试启动服务器时,我遇到了hibernate映射的问题。

控制台将打印:

Mapping class: path.vo.ObjectVO -> TABLE_NAME

对于HibernateSessionFactory.xml文件中的每个项目及其在hibernate文件夹中找到的关联VO对象。它将成功遍历整个列表。

然而,一旦它看起来成功,就会扼杀几个对象,给出了这个错误:

WARN: Unable to apply constraints on DDL for path.vo.ObjectVO
java.lang.ClassNotFoundException: path.vo.ObjectVO

奇怪的是服务器以前运行正常。自成功运行以来,我没有更改任何hibernate配置文件,VO对象或数据库模式本身。我的研究只引导人们解决他们的配置文件问题,而这些文件对我没用。

任何帮助将不胜感激。以下是我正在使用的一些文件。

HibernateSessionFactory.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

<!-- Hibernate session factory -->
<bean id="sessionFactory"     class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">

    <property name="dataSource">
        <ref bean="dataSource"/>
    </property>

    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</prop>
            <prop key="hibernate.show_sql">true</prop>
        </props>
    </property>

    <property name="mappingResources">
        <list>
            <value>hibernate/ClassA.hbm.xml</value>
            <value>hibernate/ClassB.hbm.xml</value>
        </list>
    </property> 
</bean>

ClassA.hbm.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"     "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="path.to.ClassAVO" table="CLASSA">
    <id name ="Id" type="int">
        <column name="ID"/>
        <generator class="identity" />
    </id>
    <property name="somecolumn" type="string">
        <column name="Somecolumn" length="24" not-null="true" />
    </property>
 ...
</class>
</hibernate-mapping>

1 个答案:

答案 0 :(得分:0)

  1. Hibernate中禁止将两个PO匹配到同一个表。
  2. VO应该是包装数据并跨层传输而不是被持久化。
  3. 我建议您最好遵循开放式社区熟悉的分层设计的良好做法,并为您提供帮助。
  4. 请参阅Working with objects in hibernate