运行成功了但是没有建表...
运行成功了但是没有建表...
运行成功了但是没有建表...
2016-09-03
这个问题好像是spring和hibernate整合的问题;我这样配置就可以建表,如果使用被注释掉的配置就不能自动建表
<!--配置hibernate的相关属性--> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <!--注入连接池--> <property name="dataSource" ref="dataSource"/> <!--配置hibernate的属性--> <property name="configLocation" value="classpath:hibernate.cfg.xml"/> <!--<property name="hibernateProperties">--> <!--<props>--> <!--<prop key="hibernate.hbm2ddl.auto">update</prop>--> <!--<prop key="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</prop>--> <!--<prop key="hibernate.show_sql">true</prop>--> <!--<prop key="hibernate.format_sql">true</prop>--> <!--</props>--> <!--</property>--> <!--加载hibernate中的映射文件--> <property name="mappingDirectoryLocations"> <list> <value>classpath:/io/github/godfather1103/entity</value> </list> </property> </bean>
举报