我正在使用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>
答案 0 :(得分:0)