1 Reply Latest reply on Sep 11, 2002 2:28 PM by pkasson

    JDBC config from Tomcat -> Jboss-Tomcat

    mhscott64

      I have a Web application deployed under Tomcat. I'd like to move it to Boss-Tomcat. The application is dependent on a JDBC DataSource. In the Tomcat server.xml file, the definition for the data source looks like this:

      <!-- Define JDBC to MySQL db TEST -->
      <Resource name="jdbc/MySqlDB" auth="Container" type="javax.sql.DataSource"/>
      <ResourceParams name="jdbc/RentalDB">
      <parameter>
      <name>user</name>
      <value>XXXX</value>
      </parameter>
      <parameter>
      <name>password</name>
      <value>YYYY</value>
      </parameter>
      <parameter>
      <name>driverClassName</name>
      <value>org.gjt.mm.mysql.Driver</value>
      </parameter>
      <parameter>
      <name>driverName</name>
      <value>jdbc:mysql://localhost/rentals</value>
      </parameter>
      </ResourceParams>

      It's about 20 lines. I understand what all the lines do. I initially assumed there would be a similar chunck of XML to do the same job under Jboss.
      After several hours of combing the docs and searching the web, it looks like I need to spread the information above around in 2-3 xml files, and add a whole lot of other information to it to achieve the same result (ie a DataSource I can access from the JNDI context of my web application).

      Is there a HowTo somewhere that explains porting from Tomcat to Jboss-Tomcat that would explain the Jboss config in terms of the Tomcat web app. context? In lieu of that, can someone point me to where in the documention I go to understand all the necessary components?

      Thanks in advance,
      Mark