|
我在tomcat的server.xml中配置了一个数据源,其中一个参数:
<parameter>
<name>url</name> <value>jdbc:mysql://localhost:3306/test?useUnicode=true;characterEncoding=gb2312;autoReconnect=true</value>
</parameter>
可是提示错误:
The connection property 'useUnicode' only accepts values of the form: 'true', 'false', 'yes' or 'no'. The value 'true;characterEncoding' is not in this set.
如果将其中的";"改成"&",在解析server.xml就会出错了,提示characterEncoding必须以";"结束,这是怎么回事?
请兄弟们指教! |
|