如何使用Jboss中的连接池

如何使用Jboss中的连接池

本文介绍了如何使用Jboss中的连接池的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我应该使用Jboss连接池为我的应用程序。现在我不知道这一点。我Googled,但不能得到任何好的链接。

你能分享任何好的链接,描述如何定义数据源,在Java中创建和使用连接?

I am supposed to use Jboss connection pooling for my application.Right now I dont have any idea about that. I Googled but couldn't get any good link.
Can you please share any good link which describes how to define data source, create and use connections in Java ?

〜Ajinkya。

推荐答案

这可能是你想要的:

此代码段返回在xml片段中声明的数据库连接:

This snippet returns the database connection as declared in the xml fragment:

InitialContext jndiCntx = new InitialContext();
DataSource ds = (DataSource)jndiCntx.lookup("java:/yourdsname");
connection = ds.getConnection();

这篇关于如何使用Jboss中的连接池的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-22 06:49