spring和hibernate整合时怎样设置自动生成数据库的表

spring和hibernate整合时怎样设置自动生成数据库的表
2025-04-02 18:40:34
推荐回答(4个)
回答1:

class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"
p:dataSource-ref="dataSource">


org.hibernate.dialect.MySQLInnoDBDialect
true
true
update



起作用的是update这一句,自动建表

回答2:

注意,这句
update
上面不是自动建表,而是更新表结构
如果要自动建表,必须为以下
create
一般来讲是先用create,然后再修改为update,这样开发起来会很方便

回答3:


update


true

回答4:

你的意思是生成建表语句么,如果是的话,你可以在去用Ant。具体这边略过不提,你去搜索,很多关于这方面的资料的。祝你好运