使用這個類org.springframework.jdbc.datasource.DriverManagerDataSource
- DriverManagerDataSource。作爲一種最佳實踐,如果我們將數據庫值隔離爲.properties
文件並將其配置到我們的spring servlet xml配置中,則更好。在下面的示例中,屬性存儲爲鍵值對,我們使用相應的key
訪問value
。
的applicationContext-dataSource.xml:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource" destroy-method="close">
<property name="driverClassName" value="${jdbc.driverClassName}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
<property name="connectionCachingEnabled" value="true"/>
</bean>
<context:property-placeholder location="classpath:jdbc.properties"/>
jdbc.propeties文件:
jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/sample_db
jdbc.username=root
jdbc.password=sec3ret
你的URL是錯誤的。我修好了它。這真的是用戶設置的用戶名和密碼嗎?不知怎的,我懷疑這一點。 – duffymo
如果有人想使用連接池? –