最近用到jndi,並且在spring中進行配置,可是由於各種條件限制,需要在測試各種資料後發現想要在spring中實現並不太容易,參考網上的資料總結出兩種方式,為自己做備份,也為他人做參考,少走彎路:
1. 通過initialcontext,context.lookup("test")實現,缺點不能**全部自己寫,幾乎不能用spring
附:testjndi.xml
classpath:ds.properties
oracle.jdbc.oracledriver$$
$$your database url
test
test
testspring.xml
test1
Spring配置JNDI資料來源
spring中配置jndi 在spring中配置,這樣就可以動態切換在本地,還是伺服器上 要使用 jndi資料來源需要在tomcat中配置才能獲取到 tomcat6使用的是dbcp資料來源,它的配置方式如下 具體配置資訊請參考 1.它可以直接配置在server.xml中context元素下,這時資料...
Spring 配置JNDI資料來源
1.spring 提供的jndi呼叫類.2.使用weblogic進行部署專案,所以使用weblogicnativejdbcextrator類進行配置。3.配置完資料來源後配置sessionfactory 這裡使用到的hibernate的註解方式,對應配置對映的屬性 annotatedclasses ...
通過Spring配置JNDI資料來源
jndi的概念不多說,下面要完成的是通過jndi的配置完成乙個demo。需要三步 1,伺服器中配置資料來源。2,spring中配置資料來源。3,使用資料來源。我是用windows系統上的tomcat伺服器連線linux系統上的資料庫db2。第一步 配置tomcat中的資料來源,因為要在eclipse...