如何在JBoss应用服务器中创建数据源
任何人都可以提供在 JBoss 服务器(5.0)中使用 Oracle 数据库创建数据源的步骤吗?
提前致谢
Can anybody provide the steps for creating DataSource in JBoss server(5.0) with Oracle Database..
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此示例假设您使用的是 Oracle 10i。
在 JBoss 5 中,创建一个以
-ds.xml
结尾的 XML 文件(虽然不一定是-ds
,但它必须是 XML 文件)。具有以下描述符元素。这是一个执行 Local-TX 数据源的示例。
您可以拥有超过 1 个
元素,但
必须 是唯一的。对于 XA 数据源,请参阅此处的示例。
上面的示例保存在
MyDataSourceName-ds.xml
中。XML 文件必须放置在
JBOSS_HOME/server//deploy
文件夹下。现在,在 Java 中,您将检索
MyDataSourceName
,如下所示:This example assumes you're using Oracle 10i.
In JBoss 5, create an XML file ending with
-ds.xml
(although not necessarily-ds
, it has to be an XML file). with the following descriptor elements.This is an example to do Local-TX datasource.
You can have more than 1
<local-tx-datasource>
element but<jndi-name>
must be unique.For XA datasource, see an example here.
The above example is saved in
MyDataSourceName-ds.xml
.The XML file must be placed under
JBOSS_HOME/server/<default|all>/deploy
folder.Now, in Java, you will retrieve
MyDataSourceName
as follows:这是 JBoss 的链接,为您解释它。
Here is a link to JBoss that explains it for you.