Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create a datasource in JBOSS 7.

My standalone.xml excerpts:

<subsystem xmlns="urn:jboss:domain:datasources:1.0">
<datasources>
    <datasource jndi-name="MySqlDS" pool-name="MySqlDS" enabled="true" jta="true" use-java-context="true" use-ccm="true">
         <connection-url>jdbc:mysql://localhost:3306/sampledb</connection-url>
          <driver>mysql</driver>
          <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation>
          <pool>
            <prefill>true</prefill>
            <use-strict-min>false</use-strict-min>
            <flush-strategy>FailingConnectionOnly</flush-strategy>
          </pool>
          <security>
            <user-name>root</user-name>
            <password>matrix</password>
          </security>
    </datasource>
    <drivers>
        <driver name="mysql" module="com.mysql">
         <xa-datasource-class>com.mysql.jdbc.jdbc2.optional.MysqlXADataSource</xa-datasource-class>
        </driver>
    </drivers>
</datasources>

and I have created module/com/mysql/main directory and have put mysql jar there along with module.xml which is as below:

<module xmlns="urn:jboss:module:1.0" name="com.mysql">
    <resources>
        <resource-root path="mysql-connector-java-3.0.17-ga-bin.jar"/>
            <!-- Insert resources here -->
    </resources>
    <dependencies>
      <module name="javax.api"/>
      <module name="javax.transaction.api"/>
    </dependencies>
</module>

and my persistence.xml uses this datasource

 <jta-data-source>java:/MySqlDS</jta-data-source>

But the server start throws the error message as below.

New missing/unsatisfied dependencies:
      service jboss.jdbc-driver.mysql (missing)

Could you please help ?

Thanks.

share|improve this question
I think, this problem is not specific to MySQL. I got the same error in an attempt to deploy an app using Oracle and IBM DB2 and from within JBoss Tools / JBDevStudio 5.01 ! (tried both separately - got the same result) – Skyhan Oct 7 '12 at 15:39

2 Answers

up vote 4 down vote accepted

This will help you to fix the problem.

Jboss and mysql connector

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.