gpt4 book ai didi

jaxb - 禁用对 jaxb 1 编码器的验证

转载 作者:行者123 更新时间:2023-12-04 06:41:29 25 4
gpt4 key购买 nike

如何禁用对 jaxb1 的编码器的验证?

最佳答案

您可以在您的编码器上设置一个 ValidationEventHandler 忽略所有事件:

marshaller.setEventHandler(new IgnoringValidationEventHandler());

ValidationEventHandler 看起来像:
import javax.xml.bind.ValidationEvent;
import javax.xml.bind.ValidationEventHandler;

public class IgnoringValidationEventHandler implements ValidationEventHandler {

public boolean handleEvent(ValidationEvent event) {
return true;
}

}

注:
如果这是一个新应用程序,我建议使用 JAXB 2 (JSR-222) 而不是 JAXB 1。

关于jaxb - 禁用对 jaxb 1 编码器的验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4184597/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com