如何在运行时更改 persistence.xml
我是 openJPA 的新手。
我有一个场景,根据运行应用程序的服务器,我需要将设置更改为 persistance.xml。 例如。 如果它在服务器 A 上运行,那么它应该使用不同的数据库(不同的 url)、不同的密码等,如果应用程序在服务器 B 上运行,那么它应该使用不同的信息。
您还可以告诉我,应该以哪种方式完成,使用数据源还是简单地将属性放在持久性单元下。
仅供参考,我正在使用 WS 应用程序。 server 7 和 RAD 7.5
任何类型的帮助将不胜感激。
I am new to openJPA.
I have a scenario where, depending upon the server where my application is running, I need to change the settings to persistance.xml.
For eg. if its running on Server A, then it should use different database(different url), different password etc. and if the application is running on Server B then it should use different information.
And could you also tell me, which way should it be done, using datasource or simply putting properties under persistence-unit.
FYI I am using WS app. server 7 and RAD 7.5
Any type of help would be highly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是应用程序服务器,因此无需在 persistence.xml 文件中设置数据库连接设置。 您应该能够在应用程序服务器中创建 JNDI 数据源,然后使用它。 每个服务器可以让数据源具有相同的 JNDI 名称,然后就不需要任何 persistence.xml 差异。
Workshop、JPA 和 DataSources 似乎与您特别相关。 设置也是如此在WebSphere 6.0/6.1和WebSphere + JNDI + Spring 框架 + Hibernate。
你用的是Spring吗? 如果是这样,那么问题很容易解决:您不将数据源信息放在 persistence.xml 中,而是将其放在应用程序上下文中,并且每个服务器上都会有不同的配置。
例如:
每台服务器上都可以有不同的database.properties 文件(在本例中,每个文件都位于类路径中的某个位置):
在运行时更改 persistence.xml 将会出现问题,因为这并不是 JPA 的真正设计方式。
当然,您也可以在 Spring 中使用 JNDI 数据源。
You're using an application server so you don't need to set database connection settings in the persistence.xml file. You should be able to create a JNDI data source in your appserver and then use that. EAch server could have the data source have the same JNDI name and then there'll be no need for any persistence.xml differences.
Workshop, JPA, and DataSources seems particularly relevant to you. As does Setting up a JNDI data source in WebSphere 6.0/6.1 and WebSphere + JNDI + Spring Framework + Hibernate.
Are you using Spring? If so, then the problem is easy to solve: you don't put the data source information in your persistence.xml, you put it in your application context and that'll have different configuration on each server.
For example:
and each server could have a different database.properties file on each server (where each is in the classpath somewhere in this example):
Changing persistence.xml at runtime is going to be problematic as that's not really how JPA is designed.
Of course, you can use JNDI data sources with Spring also.