http://www.vaannila.com/spring/spring-hibernate-integration-1.html
阅读本教程后,他们没有提到过在DB中创建表的任何内容。一旦我指定它们,Hibernate是否通过创建表和字段来自动处理它。
这是我的bean配置。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/jsp/" p:suffix=".jsp" />
<bean id="myDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://127.0.0.1:3306/spring"/>
<property name="username" value="monwwty"/>
<property name="password" value="www"/>
</bean>
<bean id="mySessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="myDataSource" />
<property name="annotatedClasses">
<list>
<value>uk.co.vinoth.spring.domain.User</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.hbm2ddl.auto">create</prop>
</props>
</property>
</bean>
<bean id="myUserDAO" class="uk.co.vinoth.spring.dao.UserDAOImpl">
<property name="sessionFactory" ref="mySessionFactory"/>
</bean>
<bean name="/user/*.htm" class="uk.co.vinoth.spring.web.UserController" >
<property name="userDAO" ref="myUserDAO" />
</bean>
</beans>
答案 0 :(得分:51)
您的hibernate.hbm2ddl.auto设置应该定义数据库是否已创建(选项为validate
,create
,update
或create-drop
)
答案 1 :(得分:23)
是的,因为您的配置中包含以下属性。这在测试期间没问题,但在生产中你需要禁用它。
<prop key="hibernate.hbm2ddl.auto">create</prop>
答案 2 :(得分:5)
是的,可以通过hibernate.hbm2ddl.auto
文件中的hibernate.cfg.xml
属性配置Hibernate,以便在数据库中自动创建表,以便在表尚不存在时将实体存储在其中
这在开发过程中非常方便,可以在每次运行应用程序或测试期间使用新的in-memory,
数据库并创建新数据库。
答案 3 :(得分:5)
对我来说,即使hibernate.hbm2ddl.auto
设置为update
,也无法正常工作。原来,生成的创建SQL无效,因为我的一个列名(user
)是一个SQL关键字。这种情况很失败,直到我检查日志才明白发生了什么。
答案 4 :(得分:5)
在hibernate.cfg.xml文件中添加以下属性
<property name="hibernate.hbm2ddl.auto">update</property>
BTW,在你的Entity类中,你必须像这样定义你的@Id:
@Id
@GeneratedValue(generator = "increment")
@GenericGenerator(name = "increment", strategy = "increment")
@Column(name = "id")
private long id;
如果您使用以下定义,则可能无效:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private long id;
答案 5 :(得分:2)
如果属性为hibernate.ddl-auto = update
,则它将不会自动创建表。
要自动创建表,需要将属性设置为
hibernate.ddl-auto = create
在春季引导中使用的选项列表是
验证:验证架构,不对数据库进行任何更改。
更新:更新架构。
创建:创建架构,销毁先前的数据。
创建-删除:在会话结束时删除架构
没有:是否其他所有情况
因此,您第一次可以将其设置为创建,然后下次再将其设置为更新。
答案 6 :(得分:0)
Hibernate可以代表你创建一个用于多对多映射的表,hibernate序列和表,但是你必须通过调用setProperty来显式配置它(&#34; hibernate.hbm2ddl.auto&#34;,&# 34;创建&#34;)配置对象。默认情况下,它只是使用DB验证模式,如果没有任何东西,则通过给出错误&#34来失败; ORA-00942:表或视图不存在&#34;。
如果您执行上述配置,则执行操作的顺序为: - a)删除所有表和序列,如果它们不存在则不给出错误。 b)创建所有表和序列 c)用约束改变表格 d)将数据插入其中。
答案 7 :(得分:-1)
是的,你可以使用
<property name="hbm2ddl.auto" value="create"/>