My existing web application gets database pooling parameters from context. Now, I m developing a new web service to be deployed as a separate application, but using the previous database.
在这项新的网络服务申请中,我没有使用任何服务器和联合项目。 他们只是一个服务班子。 在这种情况下,我如何获得背景参数?
在早先的Im使用服务器的情况下,我的情况如下:
<?xml version="1.0" encoding="UTF-8"?>
<Context antiResourceLocking="false" privileged="true" >
<Resource
name="jdbc/NetmarketDB"
auth="Container"
type="javax.sql.DataSource"
removeAbandoned="true"
removeAbandonedTimeout="30"
maxActive="100"
maxIdle="30"
maxWait="1000"
username="root"
password="xxxxxxxx"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/netmarket"/>
</Context>
......和我从一个服务器或共同财产调查中获得以下背景:
Connection conn = MySqlDB.getDBConnection(getServletContext());
但现在我不使用任何电灯/JSP,我感到困惑。 请帮助我。