自动建表

来源:互联网 发布:大数据销售成功案例 编辑:程序博客网 时间:2024/06/07 18:18
<property name="hbm2ddl.auto">update</property>  //加载属性配置文件    <context:property-placeholder location="classpath:config.properties"/>//加载映射文件(注解)     <mapping class="com.lt.bean.Group"/>       <mapping class="com.lt.bean.User"/>  //加载映射文件(xml类型)<property name="mappingResources">    <list>    <value>com/gjh/entity/User.hbm.xml</value>    </list>    </property>