XMLファイルの構成に関するよくある質問The reference to entity"password"must end with the';delimiter.の原因と解決方法


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"/>

正しい構成:<param name="url" value="jdbc:mysql://129.12.16.16/jwnl?user=myusername&amp;password=mypassword"/>

This is because the sax xml parsing libraries used by jwnl are generic xml libraries and therefore expect an escaped charcter sequence.