Jax ws-xs:日期格式验证

时间:2013-12-05 10:36:17

标签: java web-services validation jaxb date-format

我的XSD中有这个(请查看下面的代码):

<xs:element name="Report_Date" type="xs:date" minOccurs="0"/>

这个字段确实只接受日期格式yyyy-mm-dd,如果给出任何其他格式,JAXB将其解组为null。

但是我想验证report_date字段中请求中给出的格式不正确。 由于这是一个可选字段,因此即使未给出日期和日期格式不正确,应用程序的行为也相同。

为简单起见,如果指定的格式不正确,我想从应用程序中抛出错误消息。 XMLAdapter无法提供帮助,因为即使在那里它被解组为null。

此外,我没有选择在xsd中将xs:date的类型更改为字符串。

1 个答案:

答案 0 :(得分:0)

xs:date接受的格式不仅仅是YYYY-MM-DD(请参阅here)。

下面的代码实现了上述指南。

private static String twoDigitRangeInclusive(int from, int to) {
    if (to<from) throw new IllegalArgumentException(String.format("!%d-%d!", from, to));
    List<String> rv = new ArrayList<>();
    for (int x = from; x <= to; x++) {
        rv.add(String.format("%02d", x));
    }
    return StringUtils.join(rv, "|");
}

/**
 * Checks whether the provided String is compliant with the xs:date datatype
 * (i.e. the {http://www.w3.org/2001/XMLSchema}:date type)
 * Known deviations: (1) years greater than 9999 are not accepted (2) year 0000 is accepted.
 */
public static boolean isXMLSchemaDate(String s) {
    String regExp = String.format("-??\\d\\d\\d\\d-(%s)-(%s)(Z|((\\+|\\-)(%s):(%s)))??"
                                  , twoDigitRangeInclusive(1, 12)
                                  , twoDigitRangeInclusive(1, 31)
                                  , twoDigitRangeInclusive(0, 23)
                                  , twoDigitRangeInclusive(0, 59));
    Pattern p = Pattern.compile(regExp);
    return p.matcher(s).matches();
}