次のJavaコード(ColdFusion)を使用してデータベース接続を取得しています。
//Creating an object of servicefactory class
local.theServiceFactory = createObject('java','coldfusion.server.ServiceFactory');
//Creating the connection object simply by passing the DSN name
local.connect = theServiceFactory.getDataSourceService().getDataSource('dsnnane').getConnection();
よく働く。唯一の問題はServiceFactory
、セキュリティ上の理由で使用できないと言われていることです。接続オブジェクトを取得する別の方法はありますか?