将数据源移植到 Glassfish
如何在 Glassfish 3 中定义以下内容?在一个合理的、理想情况下符合 JavaEE6 的文件中 - 而不是通过手动单击 Web UI。
<datasources>
<local-tx-datasource>
<jndi-name>FizioDS</jndi-name>
<connection-url>jdbc:postgresql://localhost:5432/fizio</connection-url>
<driver-class>org.postgresql.Driver</driver-class>
<user-name>fizio</user-name>
<password>password</password>
</local-tx-datasource>
</datasources>
提前致谢。
How do I define the following in Glassfish 3? In a sensible, ideally JavaEE6 compliant, file - not by manually clicking through a web UI.
<datasources>
<local-tx-datasource>
<jndi-name>FizioDS</jndi-name>
<connection-url>jdbc:postgresql://localhost:5432/fizio</connection-url>
<driver-class>org.postgresql.Driver</driver-class>
<user-name>fizio</user-name>
<password>password</password>
</local-tx-datasource>
</datasources>
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是来自我的 MySQL 数据源 domain.xml 文件的示例。也许它对 postgreSQL 也有帮助:
将其放在 domain.xml 的
部分中。Here is an example from my domain.xml file for a MySQL datasource. Maybe it is helpful for postgreSQL as well:
Put it inside the
<resources>
section of domain.xml.