我有一个奇怪的问题,我的 Castor-Maven-Plugin 生成的 java 类将无法解组 XML 字符串的内容。
我要验证的 XML 如下所示:
...
<mediaType>audio/media</mediaType>
...
我正在根据以下模式验证它:
(audio|video|document|application|example|image|message|model|multipart|text)/.+
Castor 从中生成类的 XSD 的相关部分:
...
<xs:simpleType name="mediaType">
<xs:annotation>
<xs:documentation>
The internet media type of the paired file. For example, a MP3 file would be audio/mpeg.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="(audio|video|document|application|example|image|message|model|multipart|text)/.+"/>
</xs:restriction>
</xs:simpleType>
...
当我尝试解组 XML 字符串时引发以下异常:
org.exolab.castor.xml.MarshalException: The following exception occured while validating field: _mediaType of class: my.domain.GeneratedClass: audio/mpegdoes not match the required regular expression: "(audio|video|document|application|example|image|message|model|multipart|text)/.+"{File: [not available]; line: 23; column: 12}...
现在,根据 IntelliJ 的 XML 验证和我尝试过的所有其他正则表达式工具,这应该不是问题。为什么卡斯特似乎这么认为?