ConnectionFactory実装サービス jp.ossc.nimbus.service.connection.!JDBCConnectionFactoryService

jp.ossc.nimbus.service.connection.JDBCConnectionFactoryServiceは、java.sql.DriverManager経由でjava.sql.Connectionを取得するConnectionFactory実装サービスです。

以下に簡単なサービス定義を示します。

  1. <?xml version="1.0" encoding="Shift_JIS"?>
  2. <!DOCTYPE server PUBLIC
  3. "-//Nimbus//DTD Nimbus 1.0//JA"
  4. "http://nimbus.sourceforge.jp/dtd/nimbus-service_1_0.dtd">
  5. <server>
  6. <manager>
  7. <!-- JDBCドライバ経由でConnectionを取得するConnectionFactoryサービス -->
  8. <service name="ConnectionFactory"
  9. code="jp.ossc.nimbus.service.connection.JDBCConnectionFactoryService">
  10. <!-- JDBCドライバのクラス名を設定する -->
  11. <attribute name="DriverName">org.hsqldb.jdbcDriver</attribute>
  12. <!-- JDBC接続URLを設定する -->
  13. <attribute name="ConnectionURL">jdbc:hsqldb:./localDB</attribute>
  14. <!-- JDBC接続ユーザ名を設定する -->
  15. <attribute name="UserName">sa</attribute>
  16. <!-- JDBC接続パスワードを設定する -->
  17. <attribute name="Password"></attribute>
  18. </service>
  19. </manager>
  20. </server>


JDBC/ConnectionFactory