Hi All in My Spring MVC应用程序。 我将表单数据作为XML存储在DB中。 使用JAXB Class和Marshaller,JAXBContext等。
现在问题在'&'
如果文字字段包含' ABC& XYZ' 它存储在DB中 ABC& amp; XYZ
<individualOrOrganisation>I</individualOrOrganisation>
<detailsoftheArtsEntertainment>
<titleofEvent>ABC &amp; XYZ</titleofEvent>
</detailsoftheArtsEntertainment>
显示为 ABC&amp; XYZ
我正在使用StringTrimmerEditor和initBinder修剪所有用户输入文本数据。
请帮我解决这个问题。