您的位置:首页 > Web前端

The reference to entity "password" must end with the ';' delimiter.的原因跟解决方法

2004-11-22 15:21 756 查看
This error is caused by a rogue '&' in database_properties.xml. This xml tag...

<param name="url" value="jdbc:mysql://129.12.16.16/jwnl?user=myusername&password=mypassword"/>

should actually read...

<param name="url" value="jdbc:mysql://129.12.16.16/jwnl?user=myusername&password=mypassword"/>

This is because the sax xml parsing libraries used by jwnl are generic xml libraries and therefore expect an escaped charcter sequence.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: