jboss-AS7配置postgrsql笔记

前端之家收集整理的这篇文章主要介绍了jboss-AS7配置postgrsql笔记前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.在jboss中建立postgresql模块。具体可仿照jboss目录中的module文件夹里的模块,建立postgresql模块。

2.修改jboss中的standalone中standalone.xml中的drivers节点中添加driver

<driver name="postgresql" module="org.postgresql">
   <xa-datasource-class>org.postgresql.xa.PGXADataSource</xa-datasource-class>
</driver>
3.在具体的项目的-ds.xml和persistence.xml中配置即可 原文链接:https://www.f2er.com/postgresql/195828.html

猜你在找的Postgre SQL相关文章