当前位置: 代码迷 >> Java Web开发 >> hibernate自动建表失败解决思路
  详细解决方案

hibernate自动建表失败解决思路

热度:23   发布时间:2016-04-16 22:25:15.0
hibernate自动建表失败
配置文件:<bean id="dataSource"
class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url"
value="jdbc:mysql://localhost:3306/forum?characterEncoding=UTF-8" />
<property name="username" value="root" />
<property name="password" value="password" />
</bean>

<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"
destroy-method="destroy">
<property name="dataSource" ref="dataSource" />
<property name="annotatedClasses">
<list>
<value>com.helloweenvsfei.forum.bean.Category</value>
<value>com.helloweenvsfei.forum.bean.Board</value>
<value>com.helloweenvsfei.forum.bean.Thread</value>
<value>com.helloweenvsfei.forum.bean.Person</value>
<value>com.helloweenvsfei.forum.bean.Reply</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.format_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
</bean>
错误信息:
 [org.springframework.web.context.ContextLoader]-[ERROR] Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in ServletContext resource [/WEB-INF/classes/applicationContext.xml]: Invocation of init method failed; nested exception is net.sf.cglib.core.CodeGenerationException: java.lang.reflect.InvocationTargetException-->null
可能的问题处在哪呢?
------解决方案--------------------
反射代理对象为null了。java.lang.reflect.InvocationTargetException-->null
------解决方案--------------------
这个文件不是自动生成的吧
  相关解决方案