設定JNDI DataSource:
在server.xml的<server>中設定DataSource
<Resource driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
url="jdbc:sqlserver://localhost:1433;databasename=servdb"
username="sa" password="passw0rd" name="jdbc/servdb"
type="javax.sql.DataSource" poolPreparedStatements="true"
auth="Container" maxWait="5000" maxIdle="5" maxActive="120"
initialSize="5" validationQuery="select 1" />
在context.xml的<Context>中設定<ResourceLink>
<ResourceLink
type="javax.sql.DataSource"
global="jdbc/servdb"
name="jdbc/servdb"/>