数据库
java jndi tcp-凯发ag旗舰厅登录网址下载
在开发oa系统因为采用了spring hibernate架构,其中数据源很多,采用jdbc注入到spring中,结果时间长了,数据库容易断开,改成了jndi,jndi由spring去管理
1、配置jndi文件
文件位置
%tomcat_home% \conf\catalina\localhost
文件名
webapp工程的名字.xml。如:若工程名为jndidemo,则文件取名为jndidemo.xml。一般情况下该文件会存在。如果不存在可手动创建
文件内容应该有如下格式:
name="jdbc/jndidemo1"
type="javax.sql.datasource"
driverclassname="oracle.jdbc.driver.oracledriver"
password="efnx"
maxidle="2"
maxwait="5000"
username="efnx"
url="jdbc:oracle:thin:@(description=(address_list=(address=(protocol=tcp)(port=1521)(host=192.168.0.240)))(connect_data=(server = dedicated)(service_name = db.efriendnet.com)))"
maxactive="4"/>
根据具体需要修改相应内容。
2、spring配置文件
在spring配置文件中增加如下类似内容
java:comp/env/jdbc/jndidemo1
3、持久化配置文件
对持久化层进行依赖注入时,给datasource属性注入jndidatasource即可。如:
4、数据库驱动
最后别忘了将相应的数据库驱动拷贝到%tomcat_home%\common\lib下
注意事项:
根据tomcat版本不同,jndi配置文件的写法存在差异。现给出说明:
版本:4.x
这个版本的配置文件一般都写在%tomcat_home% \conf\server.xml文件中。因为现在基本都在用5.x版本,所以这里就不做详细说明了。
版本:5.0.xx
这个版本将context的内容独立了出来放到了%tomcat_home% \conf\catalina\localhost下,且不同的工程生成相应的配置文件,但文件格式和4.x类似:如:
factory
org.apache.commons.dbcp.basicdatasourcefactory
driverclassname
com.microsoft.jdbc.sqlserver.sqlserverdriver
url
jdbc:microsoft:sqlserver://59.151.17.254:1500;databasename=yeeyoo_db
username
crm
password
crmyeeyoo
maxwait
-1
maxactive
10
版本5.5.xx
该版本中给配置文件格式作了较大改动,使其更加简洁。格式内容如下:
name="jdbc/jndidemo"
type="javax.sql.datasource"
driverclassname="oracle.jdbc.driver.oracledriver"
password="efnx"
maxidle="2"
maxwait="5000"
username="efnx"
url="jdbc:oracle:thin:@(description=(address_list=(address=(protocol=tcp)(port=1521)(host=192.168.0.240)))(connect_data=(server = dedicated)(service_name = db.efriendnet.com)))"
maxactive="4"/>
请根据不同版本编写相应格式的配置文件否则会出现各种各样不同的问题。
总结
以上是凯发ag旗舰厅登录网址下载为你收集整理的java jndi tcp_spring配置下通过tomcat的jndi服务连接数据库的全部内容,希望文章能够帮你解决所遇到的问题。
如果觉得凯发ag旗舰厅登录网址下载网站内容还不错,欢迎将凯发ag旗舰厅登录网址下载推荐给好友。
- 上一篇:
- 下一篇: