Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何在 Safe 函数中使用 Axiom 数据库资源。
现在我只是手动处理连接,但我知道使用已经定义的资源会更好。
我找到了。
如果需要这样做,您可以这样做:
在 safe.t_resources 中定义 db 资源,然后在安全函数 java 代码中:
String DB_RESOURCE="DATABASE"; this.dbResource = getResource(this.DB_RESOURCE); Oracle oracle = new Oracle(this.dbResource); Connection conn = oracle.getConnection();
对,就是这么简单