我正在使用以下 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
由于安全原因我不能使用。还有另一种获取连接对象的方法吗?