後端-框架-Spring-dataSource配置
阿新 • • 發佈:2018-11-11
後端-框架-Spring-dataSource配置
dbcp配置方式1(只適用於單個專案)
在database.properties中
#properties不需要對特殊符號轉義
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/smbms?useUnicode=true&characterEncoding=utf-8&useSSL=true
jdbc.user=root
jdbc.password=123456
在Spring中的applicationContext.xml中
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>classpath:database.properties</value>
</property>
</bean>
<!--在 ${} 中不能加空格-->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" >
<property name="driverClassName" value="${jdbc.driver}"></property>
<property name="url" value="${jdbc.url}"></property>
<property name="username" value="${jdbc.user}"></property>
<property name="password" value="${jdbc.password}"></property>
</ bean>
dbcp配置方式2(只適用於單個專案)
在Spring中的applicationContext.xml中
<!--特殊符號需轉義,&和&-->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
<property name="url" value="jdbc:mysql://127.0.0.1:3306/smbms?useUnicode=true&characterEncoding=utf-8&useSSL=true"></property>
<property name="username" value="Caedios"></property>
<property name="password" value="haibaraai"></property>
</bean>
jndi配置方式1(適用於整個伺服器下)
在Tomcat中的context.xml中
<?xml version="1.0" encoding="UTF-8"?>
<Context>
<!--特殊符號需轉義,&和&-->
<Resource name="jdbc/mywebsite" auth="Container" type="javax.sql.DataSource"
maxTotal="100" maxIdle="30" maxWaitMillis="10000"
username="root" password="123456" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://127.0.0.1:3306/mywebsite?useUnicode=true&characterEncoding=utf-8&useSSL=true"/>
</Context>
在Spring中的applicationContext.xml中
<!--java:comp/env/為固定寫法-->
<!--jdbc/mywebsite為Tomcat中context.xml下面的<Resource/>-->
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName">
<value>java:comp/env/jdbc/mywebsite</value>
</property>
</bean>