欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

must end with the ';' delimiter.错误的解决

程序员文章站 2022-07-15 20:57:21
...
在配置文件中直接用&的话,会产生must end with the ';' delimiter.错误。

<action name="add" method="add" class="com.entity.NodeAction">
	<result type="redirect">edit.action?id=${id}&next=${next}</result>
</action>

<property name="connection.url">
	jdbc:mysql://localhost:3306/my?useUnicode=true&characterEncoding=utf-8
</property>



正确的做法是:&换成&amp;
<action name="add" method="add" class="com.entity.NodeAction">
	<result type="redirect">edit.action?id=${id}&amp;next=${next}</result>
</action>

<property name="connection.url">
	jdbc:mysql://localhost:3306/my?useUnicode=true&amp;characterEncoding=utf-8
</property>





XML其他字符的转换:

< 换成 &lt;
> 换成 &gt;
' 换成 &apos;
" 换成 &quot;
相关标签: MySQL XML JDBC