Glassfish不会创建JDBC资源

Hum*_*erd 1 java mysql jdbc glassfish

我正在尝试使用glassfish-resources.xml创建JDBC连接池和JDBC资源,代码如下.我试过用Glassfish 4.0,4.1,4.1.1和Payara来做.我知道4.1.1存在问题,但它并没有创造出任何一个问题.我一直试图解决这个问题几个小时,但没有成功.PLZ帮助.

<resources>
  <jdbc-resource enabled="true"
                 jndi-name="jdbc/affablebean"
                 object-type="user"
                 pool-name="AffableBeanPool">
  </jdbc-resource>

  <jdbc-connection-pool allow-non-component-callers="false"
                        associate-with-thread="false"
                        connection-creation-retry-attempts="0"
                        connection-creation-retry-interval-in-seconds="10"
                        connection-leak-reclaim="false"
                        connection-leak-timeout-in-seconds="0"
                        connection-validation-method="auto-commit"
                        datasource-classname="com.mysql.jdbc.jdbc2.optional.MysqlDataSource"
                        fail-all-connections="false"
                        idle-timeout-in-seconds="300"
                        is-connection-validation-required="false"
                        is-isolation-level-guaranteed="true"
                        lazy-connection-association="false"
                        lazy-connection-enlistment="false"
                        match-connections="false"
                        max-connection-usage-count="0"
                        max-pool-size="32"
                        max-wait-time-in-millis="60000"
                        name="AffableBeanPool"
                        non-transactional-connections="false"
                        pool-resize-quantity="2"
                        res-type="javax.sql.ConnectionPoolDataSource"
                        statement-timeout-in-seconds="-1"
                        steady-pool-size="8"
                        validate-atmost-once-period-in-seconds="0"
                        wrap-jdbc-objects="false">

    <description>Connects to the affablebean database</description>
    <property name="URL" value="jdbc:mysql://localhost:3306/affablebean"/>
    <property name="User" value="root"/>
    <property name="Password" value="nbuser"/>
  </jdbc-connection-pool>
</resources>
Run Code Online (Sandbox Code Playgroud)

Hum*_*erd 10

好的,问题解决了......最新的NetBeans 8.1在错误的文件夹中创建了glassfish-resources.xml.如果您遇到同样的问题,只需将glassfish-resources.xml从配置文件移动到服务器资源...