wildfly10配置数据源

配置数据源的方式不赘述,可参见
http://blog.csdn.net/kylinsoong/article/details/17042245
http://blog.csdn.net/wildandfly/article/details/17118017 (使用网页的管理端进行配置)

要说的是这次配置数据源的过程中碰到的问题:
报错:

 WARN  [org.jboss.jca.core.connectionmanager.pool.strategy.OnePool] (XNIO-1 task-6) IJ000604: Throwable while attempting to get a new connection: null: javax.resource.ResourceException: IJ031084: Unable to create connection

碰到这个问题,首先去%jboss-home%/standalone/configuration/standalone.xml文件中查找datasource,看user-name和password是否正确(注意:如果password为空的话wildfly会自动把删除掉,只有user-name的情况也是可能会出现的)
如果这里没有问题的话,去检查你的standalone文件中连接的数据库地址是否正确

<datasource jndi-name="java:jboss/datasources/mysqlDS" pool-name="mysqlDSPool" enabled="true">
                    <connection-url>jdbc:mysql://localhost:3306/j2eeconnection-url>
                    <driver>mysqldriver>
                    <security>
                        <user-name>rootuser-name>
                    security>
                datasource>

刚开始把connection-url里的数据库地址写错了(汗。。。)
改过来之后就好了

你可能感兴趣的:(ejb)