https://blog.csdn.net/guozhaohui628/article/details/80177563
前面这篇博客写了在 java 代码中配置 数据库连接报错 SSL 问题,现在来看 xml中配置 也报错。
value="jdbc:mysql://localhost:3306/mybatis?characterEncoding=utf-8&useSSL=false"
如上所示 配置 SSL 报错如下
Cause: org.xml.sax.SAXParseException; lineNumber: 15; columnNumber: 100; 对实体 "useSSL" 的引用必须以 ';' 分隔符结尾。
但是就算将 &
换成 ;
也不行,还是报错
Unsupported character encoding 'utf-8;useSSL=false'.
想了很久 原来是提示我们用转义字符,用 &
的转义字符 &
ok 果然没问题了
本文由老郭种树原创,转载请注明:https://guozh.net/cause-org-xml-sax-saxparseexception-linenumber-15-columnnumber-100-duishiti-usessl-deyinyongbixuan/