在使用thymeleaf模板中,有些时候需要绝对路径带多个参数的地址访问其他页面,这时候由于&字符的问题会报错:
org.xml.sax.SAXParseException: 对实体 "xxx" 的引用必须以 ';' 分隔符结尾。
使用逆转字符代替&,>,<这些符号
例如:
<a class="third-login-qq"
href="https://graph.qq.com/oauth2.0/authorize? response_type=code&client_id=101395666&redirect_uri=http://www.leftso.com/user/login.html&scope=get_user_info&state=test"
id="qqLoginBtn"></a>
https://www.leftso.com/article/257.html