在配置數據庫鏈接池數據源時,原本沒有錯誤,結果加上編碼轉換格式後eclipse忽然報錯:mysql
這是怎麼回事?spring
通過查詢,發現這個錯誤其實很好解決。sql
首先,緣由是: .xml文件中 ‘ & ’字符須要進行轉義!!!數據庫
看到這裏,其實已經恍然大悟,那麼,這個字符 ‘ & ’ 須要怎麼轉義呢?看下面這張表:eclipse
在xml文件中有如下幾類字符要進行轉義替換:編碼
因此,咱們在xml文件中不能直接寫 ‘ & ’ 字符,而須要寫成 ‘ & ’url
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <!-- 管理DataSource --> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <!-- set方法注入屬性,和類中的成員屬性無關,和set方法名稱有關,好比有一個屬性叫username,可是set方法:setName --> <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"></property> <!-- 轉義前 --> <property name="url" value="jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai"></property> <!-- 轉義後 --> <property name="url" value="jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai"></property> <property name="username" value="root"></property> <property name="password" value="root"></property> </bean> <!-- 管理jdbcTemplate --> <bean id="template" class="org.springframework.jdbc.core.JdbcTemplate"> <constructor-arg name="dataSource" ref="dataSource"></constructor-arg> </bean> </beans>