- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 JBoss 服务器中验证 StAXSource
时出现问题,
我的尝试:
我尝试使用 StAX 同时进行解析和验证。
如本 example 中所述.
我能够将程序作为独立应用程序执行,
但是当我在 JBoss EAP 6.1
服务器中尝试将其作为 Web 应用程序时出现以下异常。
异常:
java.lang.IllegalArgumentException: Source parameter of type
javax.xml.transform.stax.StAXSource' is not accepted by this validator.
at org.apache.xerces.jaxp.validation.ValidatorImpl.validate(Unknown Source)
从StAXSource到StreamSource修改了多个框架作品, TEIID-2046 , activiti ..等等
我不确定,为什么 JBoss 不支持 StAXSource,有什么线索吗?
最佳答案
问题已通过添加 xercesImpl 2.11.0 依赖项得到解决。 (如 forums_activiti 中所述)
解决方案:添加xerces 2.11.0
依赖。
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.11.0</version>
</dependency>
详情:
JBoss EAP 6.1 有 Xerces 2.9.1-redhat-4,但 StaxSource 增强在 Xerces-J 2.10.0 中发布(更多详情请引用 JBoss EAP Component details)。
Xerces-J 2.10.0对 java.xml.validation
进行了增强,并支持 JAXP 验证器的 StAXSource
。
更新:添加了Feature Request in JBoss EAP 1.6项目。
引用资料:
http://comments.gmane.org/gmane.comp.apache.commons.general/1770
http://xerces.apache.org/xerces2-j/
http://people.apache.org/~edwingo/jaxp-faq.html
关于jboss - StAXSource 未被 JBoss EAP 6.1 中的验证器接受,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20493359/
下面的代码(基于 http://jax-ws.java.net/nonav/jax-ws-20-fcs/arch/com/sun/xml/ws/util/xml/StAXSource.html 中的示
在 JBoss 服务器中验证 StAXSource 时出现问题, 我的尝试: 我尝试使用 StAX 同时进行解析和验证。 如本 example 中所述. 我能够将程序作为独立应用程序执行, 但是当我在
服务器部署 war 时偶尔会遇到这个问题。重新启动后问题得到解决。有时需要多次重新启动才能解决问题。 我在我的上下文中使用了以下 bean 配置 我已将 baseCamelMa
我是一名优秀的程序员,十分优秀!