在实现Java数据池时,进行配置数据源时出现了该报错信息。报错信息出现在 context.xml 中,原语句是:
<Context>
<Resource name="jdbc/onlinefriend"
auth="Container"
type="javax.sql.DataSource"
driverClassName="com.MysqL.jdbc.Driver"
url="jdbc:MysqL://127.0.0.1:3306/onlinefriend?useUnicode=true&characterEncoding=utf-8"
username="root"
password="root"
maxActive="100"
maxIdle="30"
maxWait="10000" />
</Context>
<Context>
<Resource name="jdbc/onlinefriend"
auth="Container"
type="javax.sql.DataSource"
driverClassName="com.MysqL.jdbc.Driver"
url="jdbc:MysqL://127.0.0.1:3306/onlinefriend?useUnicode=true&characterEncoding=utf-8"
username="root"
password="root"
maxActive="100"
maxIdle="30"
maxWait="10000" />
</Context>
附:在xml文件中有以下几类字符要进行转义替换:
< | < | 小于 |
> | > | 大于 |
& | & | 与 |
' | ' | 单引号 |
" | " | 双引号 |