裴東輝-MyEclipse和Eclipse中使用JNDI來配置程式的開發,以及伺服器的配置

來源:互聯網
上載者:User

標籤:class   java   ext   使用   檔案   os   

MyEclipse:


    路徑下面:C:\web\myeclipse\apache-tomcat-6.0.26\conf\Catalina\localhost

    部署系統test.xml: 
<Context path="/test" docBase="C:\web\myeclipse\web\TEST\WebRoot" debug="5" reloadable="true" crossContext="true">
 
 <Resource name="jdbc/default" 
  auth="Container" 
  type="javax.sql.DataSource"   
  maxActive="100" 
  maxIdle="30" 
  maxWait="10000"
         username="U_TEST"  
  password="U_TEST"
  driverClassName="oracle.jdbc.driver.OracleDriver"
         url="jdbc:oracle:thin:@192.168.3.11:1521:SZEPB"/>
  
</Context>  



Eclipse:
    
Server項目裡面的server.xml檔案在HOST標籤裡面添加:

   <Context docBase="C:\web\eclipse\web\like\WebContent" path="/like" reloadable="true" />

  <Context docBase="C:\web\eclipse\web\TEST\WebRoot" path="/test" reloadable="true"  >
   <Resource name="jdbc/default"  
   auth="Container"  type="javax.sql.DataSource" maxActive="100"  maxIdle="30" maxWait="10000" 
   username="U_TEST" password="U_TEST" 
   driverClassName="oracle.jdbc.driver.OracleDriver" url="jdbc:oracle:thin:@192.168.3.11:1521:SZEPB"/>
  </Context>
 
修改class的輸出路徑:

 PLATFORM/WebRoot/WEB-INF/classes

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.