hibernate中配置自动建表的xml

来源:互联网 发布:罗技鼠标知乎 编辑:程序博客网 时间:2024/05/18 21:09
<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.MySQLDialect</prop><prop key="hibernate.show_sql">true</prop><prop key="hibernate.hbm2ddl.auto">update</prop></props></property><property name="mappingResources"><list><value>org/ethip/catalog/model/User.hbm.xml</value></list></property></bean>

原创粉丝点击