Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 POJO 类、*.cfg.xml 文件、*.hbm.xml 文件和休眠代码来检索数据。
但我没有创建任何表。hibernate 中是否有任何可用的标签可以使用配置文件创建表。
如何在hibernate中实现逆向工程?
谢谢 !
您实际上可以设置配置属性并指示 hibernate 为您创建数据库模式。
hibernate.hbm2ddl.auto = create-drop | update
请参阅此链接Asking hibernate to generate schema for you