我在 Tomcat 7.0 中使用 Struts/Springs/Hibernate,在尝试启动服务器时遇到了 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
奇怪的是,服务器过去运行良好。自从成功运行以来,我没有更改任何休眠配置文件、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>
类A.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>