可能重複:
What is resource-ref in web.xml used for?什麼是意味着資源引用標籤,在web.xml?
我添加了以下標籤中的Tomcat context.xml
:
<Resource name="jdbc/PollDatasource" auth="Container" type="javax.sql.DataSource"
driverClassName="org.apache.derby.jdbc.ClientDriver" url="jdbc:derby://localhost:1527/poll_database;create=true"
username="suhail" password="suhail" maxActive="20" maxIdle="10" maxWait="-1" />
上面的標籤被讀取,當服務器啓動,應用程序已部署。我還添加了在我的項目的web.xml
如下:
<resource-ref>
<description>my connection</description>
<res-ref-name>jdbc/PollDatasource</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
什麼是上面的標籤意味着?
,因爲當我寫這樣一份聲明:
DataSource ds = (DataSource)envContext.lookup("jdbc/PollDatasource")
沒有它直視服務器的context.xml
?我知道我wrong.In這種情況下,請幫助我瞭解什麼是resource-ref
標籤在web.xml
意味着?
可能的複製 - http://stackoverflow.com/q/2887967/204788 – 2012-07-18 18:19:38