これは私のcontext.xmlファイルです:
...
<Resource auth="Container"
driverClass="net.sourceforge.jtds.jdbc.Driver"
type="com.jolbox.bonecp.BoneCPDataSource"
idleMaxAge="240"
idleConnectionTestPeriod="60"
partitionCount="3"
acquireIncrement="1"
maxConnectionsPerPartition="10"
minConnectionsPerPartition="3"
statementsCacheSize="50"
releaseHelperThreads="4"
name="jdbc/MyDatasource"
username="my_username"
password="my_password"
factory="org.Apache.naming.factory.BeanFactory"
jdbcUrl="jdbc:jtds:sqlserver://localhost:12345/my_database"
/>
...
リソースの名前( "jdbc/MyDatasource")で ServletContext.getResource(Java.lang.String) を使用しようとしましたが、Tomcatは名前が「/」で始まらないと文句を言います。 。 「/ jdbc/MyDatasource」も試してみましたが、今回はnullを返します。
データベースサーバーで接続チェックを実行するには、主にjdbcUrlが必要です(サーバーがオンラインで動作しているかどうかを確認してください)。
キーワードはJNDIです。 context.xml
のリソースは、「システムリソース」ではなく、JNDIリソースです。これを試して:
InitialContext ic = new InitialContext();
// that's everything from the context.xml and from the global configuration
Context xmlContext = (Context) ic.lookup("Java:comp/env");
DataSource myDatasource = (DataSource) xmlContext.lookup("jdbc/MyDatasource");
// now get a connection to see if everything is fine.
Connection con = ds.getConnection();
// reaching this point means everything is fine.
con.close();
次のコードでデータソースにアクセスできるはずです。
Context initialContext = new InitialContext();
Context envContext = (Context)initialContext.lookup("Java:/comp/env");
DataSource ds = (DataSource)envContext.lookup("jdbc/MyDatasource");