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.
有没有办法告诉OpenJPA在应用程序部署时自动更新数据库中的表?
OpenJPA
我知道hibernate有一个属性:
<prop key="hibernate.hbm2ddl.auto">update</prop>
有没有类似的东西OpenJPA?
是的:
<property name="openjpa.jdbc.SynchronizeMappings" value="buildSchema"/>
http://openjpa.apache.org/builds/2.2.0/apache-openjpa/docs/ref_guide_conf_jdbc.html#openjpa.jdbc.SynchronizeMappings
塞巴斯蒂安