JPA持久化.xml
有没有办法使 persistence.xml 上的数据动态化? 我正在考虑在属性文件中添加数据库名称属性,然后创建表(如果不存在)。
这可能吗?
我正在使用 EclipseLink(JPA2.0) 和 MySQL。
Is there a way to make the data on the persistence.xml dynamic?
I was thinking of adding a database name property on my properties file, then the tables are created, if not existing.
Is this possible?
I'm using EclipseLink(JPA2.0) and MySQL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在独立环境中使用 JPA,则可以将其他属性传递给
Persistence.createEntityManagerFactory()
。在应用程序服务器环境中,您可以使用从 JNDI 获取的数据源。
If you use JPA in standalone environment, you can pass additional properties to
Persistence.createEntityManagerFactory()
.In application server environments you can use datasource obtained from JNDI.
如果您使用的是 spring,则可以使用 spring
property-placeholder-configurer
机制来执行此操作。只需扩展您的 EclipseLink 供应商适配器:然后您可以在 spring xml 文件中配置这些。
If you are using spring, you can use the spring
property-placeholder-configurer
mechanism to do so. Just extend your EclipseLink vendor adapter:And then you can configure these in the spring xml file.