在现有应用程序中,我使用jndi连接到数据库,如下所示。请指导我如何在基于Spring的应用程序中编写有效的代码。
我当前的jndi查找代码是
InitialContext context = null;
String welcomeMessage = null;
Integer maxSessionCount = null;
try{
context = new InitialContext();
welcomeMessage = (String)context.lookup(
"java:comp/env/welcomeMessage");
maxSessionCount = (Integer)context.lookup(
"java:comp/env/maxSessionCount");
}
catch (NamingException exception){
exception.printStackTrace();
}
答案 0 :(得分:0)
<jee:jndi-lookup id="dbDataSource"
jndi-name="jdbc/DatabaseName"
expected-type="javax.sql.DataSource" />
使用类似这样的东西在tomcat的server.xml中声明JNDI资源:
<GlobalNamingResources>
<Resource name="jdbc/DatabaseName" auth="Container" type="javax.sql.DataSource"
username="dbUsername" password="dbPasswd"
url="jdbc:postgresql://localhost/dbname"
driverClassName="org.postgresql.Driver"
initialSize="5" maxWait="5000"
maxActive="120" maxIdle="5"
validationQuery="select 1"
poolPreparedStatements="true"/>
</GlobalNamingResources/>
从Tomcat的web context.xml引用JNDI资源,如下所示:
<ResourceLink name="jdbc/DatabaseName"
global="jdbc/DatabaseName"
type="javax.sql.DataSource"/>
在您的应用程序中使用bean dbDatasource。