web工程從TOMCAT移植到JBOSS中

moonfork發表於2006-07-13

有一個工程要從TOMCAT5.0中移植到JBOSS4.0中,步驟簡概如下:

1、將部署到TOMCAT中的工程資料夾(test)名稱改為test.war;

2、配置jboss連線池代替原來的tomcat連線池,使用的mssql2000資料庫:在jboss的default/deploy目錄下加入mssql-ds.xml檔案 ,內容如下:

<?xml version="1.0" encoding="UTF-8"?>
<datasources>
<no-tx-datasource>
<jndi-name>trafficMips</jndi-name>
<connection-url>jdbc:microsoft:sqlserver://192.168.1.88:1433;DatabaseName=dbname</connection-url>
<driver-class>com.microsoft.jdbc.sqlserver.SQLServerDriver</driver-class>
<user-name>sa</user-name>
<password>test</password>
<min-pool-size>0</min-pool-size>
 <max-pool-size>5</max-pool-size>
 <blocking-timeout-millis>3000</blocking-timeout-millis>
</no-tx-datasource>
</datasources>

3、在工程test.war中web.xml檔案所在位置增加jboss-web.xml檔案,內容如下:

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE jboss-web PUBLIC
        "-//JBoss//DTD Web Application 2.3V2//EN"
    "http://www.jboss.org/j2ee/dtd/jboss-web_4_0.dtd">

<jboss-web>
    <context-root>traffic</context-root>
    <resource-ref>
        <res-ref-name>jdbc/trafficMips</res-ref-name>
        <jndi-name>java:/trafficMips</jndi-name>
    </resource-ref>
</jboss-web>

4、在web.xml檔案中增加如下內容:

<resource-ref id="trafficMips">
    <description>trafficMips</description>
    <res-ref-name>jdbc/trafficMips</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
  </resource-ref>

5、將修改好的test.war資料夾放入jboss的default/deploy資料夾中就完成了工程的移植。

 

相關文章