在 payara micro war 文件中包含到 POSTGRES 的数据库连接的正确方法

correct way to include a database connection to POSTGRES in payara micro war file

我设法使用以下文件部署和使用 JPA 连接。 这目前有效,但并不理想。

连接应该使用 postgres 池驱动程序和 JNDI 数据源而不是 web.xml 中的数据源。

What is the best practice way of deploying a database connection in a JEE container.

这是我当前的设置,使用不使用池驱动程序的全局连接。

persistence.xml

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             version="2.1"
             xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">

    <persistence-unit name="pcc" transaction-type="JTA">
        <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
        <jta-data-source>java:global/pccData</jta-data-source>
        <exclude-unlisted-classes>false</exclude-unlisted-classes>
        <properties>
            <property name="eclipselink.deploy-on-startup" value="true"/>
            <property name="eclipselink.logging.level" value="INFO"/>
            <property name="eclipselink.logging.level.sql" value="CONFIG"/>
            <property name="eclipselink.jdbc.fetch-size" value="1000"/>
            <property name="eclipselink.jdbc.cache-statements" value="true"/>
            <property name="eclipselink.persistence-context.flush-mode" value="commit"/>
            <property name="eclipselink.ddl-generation.output-mode" value="database"/>
        </properties>
    </persistence-unit>

</persistence>

web.xml
我确定 PGSimpleDataSource 不是推荐的方法

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">
  <display-name>PCC Web Application</display-name>
  <data-source>
    <name>java:global/pccData</name>
    <class-name>org.postgresql.ds.PGSimpleDataSource</class-name>
    <server-name>localhost</server-name>
    <port-number>5432</port-number>
    <database-name>pcc</database-name>
    <user>postgres</user>
    <password>postgres</password>
    <property>
      <name>fish.payara.slow-query-threshold-in-seconds</name>
      <value>5</value>
    </property>
  </data-source>
</web-app>

回答你的问题:

What is the best practice way of deploying a database connection in a JEE container?

差不多就这样了

它不需要比您当前的设置更复杂。我假设您已经看过官方的 Payara-Examples 存储库,但如果没有,那里有一个 JPA 示例,它的配置与您在问题中的配置完全相同:
https://github.com/payara/Payara-Examples/blob/master/Payara-Micro/jpa-datasource-example/ReadMe.md

作为配置 Payara Micro 的一般要点,您可以将其视为不同包中的 Payara 服务器,因此,如果您仍然不确定某些事情并希望以与 more 中相同的方式做事传统服务器那么你可以做。

--postbootcommandfile--postdeploycommandfile 选项,允许您对 Payara Micro 使用 运行 asadmin 命令并像 Payara Server 一样配置它。

对于您的连接池示例,如果您真的想在服务器中定义它(实际上,像您已经完成的那样在 web.xml 中定义它更便于移植,这将是我的首选),那么您可以启动一个普通的 Payara 服务器,单击按钮以在管理控制台中启用 asadmin 命令记录,然后使用 GUI 进行更改。然后必要的命令将转储到一个文件中,供您稍后应用于 Payara Micro。

Payara Micro 还转储了一个临时目录(可通过 --rootDir 控制,默认情况下与 java.io.tmpdir 具有相同的值)因此您始终可以通过检查domain.xml 在该目录结构中。这为您提供了某种形式的手动验证。