在 Axiom Safe Request 中使用数据库资源
我想知道如何在 Safe 函数中使用 Axiom 数据库资源。
现在我只是手动处理连接,但我知道使用已经定义的资源会更好。
I would like to know how to make use of an Axiom database resource inside a Safe function.
Right now I'm just handling the connection manually but I know it would be better to use the already defined resources.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了如何。
如果需要这样做,您可以这样做:
在 safe.t_resources 中定义数据库资源,然后在安全函数 java 代码中定义:
字符串 DB_RESOURCE="数据库";
this.dbResource = getResource(this.DB_RESOURCE);
Oracle oracle = new Oracle(this.dbResource);
连接 conn = oracle.getConnection();
是
的,就这么简单
I found how.
if ever need to do it, you can do it like this:
define db resource in safe.t_resources and then in the safe function java code:
String DB_RESOURCE="DATABASE";
this.dbResource = getResource(this.DB_RESOURCE);
Oracle oracle = new Oracle(this.dbResource);
Connection conn = oracle.getConnection();
yep, that simple