Glassfish 5.1无法添加资源

huangapple 未分类评论47阅读模式
英文:

Glassfish 5.1 can't add resources

问题

尝试通过XML文件向我的GlassFish添加资源,但出现以下错误:

通过web: 出现错误:系统找不到指定的路径:发生错误。系统找不到指定的路径:

通过asadmin: 远程失败:系统找不到指定的路径:Usersmedocumentsglassfish-resourcesdev-resources.xml命令add-resources失败。

在通过NetBeans运行时,从web控制台/ asdmin输出以下内容:
GUI部署:uploadToTempfile |#]
RestResponse.getResponse() 失败。端点= 'http://localhost:4848/management/domain/resources/add-resources'&#x3b; 属性= '{id=, target=server}'|#]

我的XML文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE resources PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 4.1 Resource Definitions//EN" "http://www.sun.com/software/appserver/dtds/sun-resources_1_4.dtd">
<resources>
  <!-- 连接池 -->
  <jdbc-connection-pool datasource-classname="com.microsoft.sqlserver.jdbc.SQLServerDataSource"
					    name="abc-dev-pool" 
					    res-type="javax.sql.DataSource">
    <property name="driverClass" value="com.microsoft.sqlserver.jdbc.SQLServerDriver"/>
    <property name="User" value="USER_Dev"/>
    <property name="Password" value="Password_Dev"/>
    <property name="URL" value="jdbc:sqlserver://192.168.1.1:1433"/>
    <property name="DatabaseName" value="db_dev"/>
  </jdbc-connection-pool>
  <!-- JDBC资源 -->
  <jdbc-resource jndi-name="jdbc/pnfe" pool-name="abc-dev-pool"/>
  <!-- 多租户 -->
  <custom-resource factory-class="org.glassfish.resources.custom.factory.PrimitivesAndStringFactory" jndi-name="conf/flagMT" res-type="java.lang.Boolean">
    <property name="value" value="false"/>
  </custom-resource>
  <custom-resource factory-class="org.glassfish.resources.custom.factory.PrimitivesAndStringFactory" jndi-name="conf/mtTenantResolverWeb" res-type="java.lang.String">
    <property name="value" value="pt.ano.pnfe.multitenancy.hibernate.UserCurrentTenantIdentifierResolver"/>
  </custom-resource>
  <custom-resource factory-class="org.glassfish.resources.custom.factory.PrimitivesAndStringFactory" jndi-name="conf/mtTenantResolverScheduler" res-type="java.lang.String">
    <property name="value" value="pt.ano.pnfe.webscheduler.mt.JobCurrentTenantIdentifierResolver"/>
  </custom-resource>
  <custom-resource factory-class="org.glassfish.resources.custom.factory.PropertiesFactory" jndi-name="conf/mtProperties" res-type="java.util.Properties">
    <property name="driverClass" value="com.microsoft.sqlserver.jdbc.SQLServerDriver"/>
    <property name="autoCommitOnClose" value="true"/>
    <property name="acquireIncrement" value="5"/>
    <property name="maxStatements" value="2000"/>
    <property name="minPoolSize" value="0"/>
    <property name="maxPoolSize" value="20"/>
    <property name="numHelperThreads" value="6"/>
    <property name="maxIdleTime" value="3600"/>
    <property name="maxIdleTimeExcessConnections" value="600"/>
    <property name="unreturnedConnectionTimeout" value="90"/>
    <property name="debugUnreturnedConnectionStackTraces" value="true"/>
    <property name="idleConnectionTestPeriod" value="180"/>
    <property name="preferredTestQuery" value="select 1+1 from moedas"/>
  </custom-resource>
</resources>

我使用GlassFish 5.1和NetBeans 11.3运行。

在GlassFish 4.1.1上运行正常。

连接到MSSQL服务器。

注意:已更改某些敏感信息。

我尝试使用此问题答案中的XML,但仍然不起作用:https://stackoverflow.com/questions/58951607/glassfish-5-1-0-error-when-adding-resources-from-web-console

编辑:

似乎从4到5的资源格式发生了变化?是GlassFish无法理解我的文件/另一个stackoverflow帖子中的XML吗?

英文:

Am trying to add resources to my glassfish via xml file, but am getting the following errors

Outputs:

Via web: An error has occurred The system cannot find the path specified: An error has occurred
The system cannot find the path specified:

Via asadmin: remote failure: The system cannot find the path specified: Usersmedocumentsglassfish-resourcesdev-resources.xml
Command add-resources failed.

When running from webconsole/asdmin by netbeans outputs the following:
GUI deployment: uploadToTempfile|#]
RestResponse.getResponse() gives FAILURE. endpoint = 'http://localhost:4848/management/domain/resources/add-resources'&#x3b; attrs = '{id=, target=server}'|#]

My xml file:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE resources PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 4.1 Resource Definitions//EN" "http://www.sun.com/software/appserver/dtds/sun-resources_1_4.dtd">
<resources>
  <!-- connection pool -->
  <jdbc-connection-pool datasource-classname="com.microsoft.sqlserver.jdbc.SQLServerDataSource"
					    name="abc-dev-pool" 
					    res-type="javax.sql.DataSource">
    <property name="driverClass" value="com.microsoft.sqlserver.jdbc.SQLServerDriver"/>
    <property name="User" value="USER_Dev"/>
    <property name="Password" value="Password_Dev"/>
    <property name="URL" value="jdbc:sqlserver://192.168.1.1:1433"/>
    <property name="DatabaseName" value="db_dev"/>
  </jdbc-connection-pool>
  <!-- jdbc resource -->
  <jdbc-resource jndi-name="jdbc/pnfe" pool-name="abc-dev-pool"/>
  <!-- multitenancy -->
  <custom-resource factory-class="org.glassfish.resources.custom.factory.PrimitivesAndStringFactory" jndi-name="conf/flagMT" res-type="java.lang.Boolean">
    <property name="value" value="false"/>
  </custom-resource>
  <custom-resource factory-class="org.glassfish.resources.custom.factory.PrimitivesAndStringFactory" jndi-name="conf/mtTenantResolverWeb" res-type="java.lang.String">
    <property name="value" value="pt.ano.pnfe.multitenancy.hibernate.UserCurrentTenantIdentifierResolver"/>
  </custom-resource>
  <custom-resource factory-class="org.glassfish.resources.custom.factory.PrimitivesAndStringFactory" jndi-name="conf/mtTenantResolverScheduler" res-type="java.lang.String">
    <property name="value" value="pt.ano.pnfe.webscheduler.mt.JobCurrentTenantIdentifierResolver"/>
  </custom-resource>
  <custom-resource factory-class="org.glassfish.resources.custom.factory.PropertiesFactory" jndi-name="conf/mtProperties" res-type="java.util.Properties">
    <property name="driverClass" value="com.microsoft.sqlserver.jdbc.SQLServerDriver"/>
    <property name="autoCommitOnClose" value="true"/>
    <property name="acquireIncrement" value="5"/>
    <property name="maxStatements" value="2000"/>
    <property name="minPoolSize" value="0"/>
    <property name="maxPoolSize" value="20"/>
    <property name="numHelperThreads" value="6"/>
    <property name="maxIdleTime" value="3600"/>
    <property name="maxIdleTimeExcessConnections" value="600"/>
    <property name="unreturnedConnectionTimeout" value="90"/>
    <property name="debugUnreturnedConnectionStackTraces" value="true"/>
    <property name="idleConnectionTestPeriod" value="180"/>
    <property name="preferredTestQuery" value="select 1+1 from moedas"/>
  </custom-resource>
</resources>

Am running on Glassfish 5.1 and netbeans 11.3.

On glassfish 4.1.1 it works fine.

Connection to a MSSQL server

Note: Some sensitive information has been changed

I have tried to use the xml in the answer of this question but it also didnt work
https://stackoverflow.com/questions/58951607/glassfish-5-1-0-error-when-adding-resources-from-web-console

EDIT:

It seems that something change in the resources format from 4 to 5? Being that glassfish dosent understand something in my file / the xml on the other stackoverflow post?

huangapple
  • 本文由 发表于 2020年7月23日 16:50:54
  • 转载请务必保留本文链接:https://java.coder-hub.com/63050423.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定