關於JNDI技術連結操作資料庫-2019.1.10
阿新 • • 發佈:2019-01-10
Java 命名與目錄介面(Java Naming and Directory Interface)
==需要使用的包為java.sql&javax.naming包==Mysql
步驟:
1.配置tomcat的中的context.xml檔案
2.配置web.xml
3.新增資料庫驅動檔案 放在tomcat中的lib檔案中
4.進行程式碼編寫,實現查詢資料來源
1.修改Tomcat/conf/context.xml檔案
<Resource name="myschool"
auth="Container"type="javax.sql.DataSource" maxActive="100"
maxIdle="30" maxWait="10000" username="root" password=“cjx"
driverClassName="com.mysql.jdbcDriver"
url="jdbc:mysql://127.0.0.1:3306:myschool"/>
2.新增資料庫驅動檔案
把資料庫驅動的.jar檔案,加入到Tomcat的lib中
3.在應用層配置web.xml檔案
<resource-ref>
<res-ref-name> myschool </res-ref-name>
<res-type> javax.sql.DataSource </res-type>
<res-auth> Container </res-auth>
</resource-ref>
4.訪問資料來源