上回說(shuō)了JNDI在Tomcat5.5.X下的配置,,今天來(lái)說(shuō)說(shuō)在6.0下的配置,。這兩種版本的配置方法有點(diǎn)區(qū)別。
第一步:在tomcat6.0的conf文件夾下找到 context.xml 文件,,在<context></context>中加入
<Resource name="jdbc/demo" <!-- JNDI名稱(chēng) --> auth="Container" <!-- 此處和web.xml中對(duì)應(yīng) --> type="javax.sql.DataSource" <!-- 數(shù)據(jù)源類(lèi)型 --> password="1234" <!-- 數(shù)據(jù)庫(kù)訪問(wèn)密碼 --> username="demo" <!-- 數(shù)據(jù)庫(kù)訪問(wèn)用戶(hù)名 --> driverClassName="oracle.jdbc.OracleDriver" <!-- 數(shù)據(jù)庫(kù)驅(qū)動(dòng)類(lèi) --> url="jdbc:oracle:thin:@127.0.0.1:1521:DEMO" <!-- 數(shù)據(jù)庫(kù)訪問(wèn)url --> maxActive="100" <!-- 最大活動(dòng)數(shù) --> maxIdle="30" maxWait="5000" <!-- 最大等待時(shí)間 --> /> 第二步:在web.xml中加入
<resource-ref> <res-ref-name>jdbc/demo</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref> 第三步:在spring配置文件中配置dataSource
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName" value="java:comp/env/jdbc/smap"></property> </bean> 如此3步,,在Spring中即可進(jìn)行數(shù)據(jù)源注入。 |
|
來(lái)自: jl_oracle > 《我的圖書(shū)館》