我正在尝试为恶意xml设置CXF总线属性,如下所示
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sec="http://cxf.apache.org/configuration/security"
xmlns:http="http://cxf.apache.org/transports/http/configuration"
xmlns:cxf="http://cxf.apache.org/core"
xsi:schemaLocation="
http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
http://cxf.apache.org/configuration/security http://cxf.apache.org/schemas/configuration/security.xsd
http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<cxf:bus>
<cxf:properties>
<entry key="org.apache.cxf.stax.maxAttributeSize" value="1"/>
<entry key="org.apache.cxf.stax.maxChildElements" value="1"/>
<entry key="org.apache.cxf.stax.maxElementDepth" value="1"/>
<entry key="org.apache.cxf.stax.maxAttributeCount" value="1"/>
<entry key="org.apache.cxf.stax.maxTextLength" value="1"/>
<entry key="org.apache.cxf.stax.maxElementCount" value="1"/>
</cxf:properties>
</cxf:bus>
</beans>
似乎这些属性未被CXF接收。上面的代码是在spring上下文xml文件中。每当我执行具有多个元素和子元素的post请求时,CXF不会抛出任何错误。我使用的是CXF 3.1.1版
答案 0 :(得分:3)
我已经在带有java 1.6和java 1.8的Tomcat服务器中使用CXF 2.7.13和3.1.6测试了总线属性,在这两种情况下,XML请求都被阻止,如文档所示。
确保woodstook和stax库在classpath中。 CXF将XML检查委托给这些库。如果服务器拥有XML解析器。它们必须位于XML解析器服务器之前(如果可用)。查看server configuration guide
我将详细介绍配置,以便您查看自己的配置。
CXF依赖关系(常春藤格式)
<dependency org="org.apache.cxf" name="cxf-rt-frontend-jaxrs" rev="3.1.6" conf="default"/>
<dependency org="org.apache.cxf" name="cxf-rt-frontend-jaxws" rev="3.1.6" conf="default"/>
<dependency org="org.apache.cxf" name="cxf-rt-ws-security" rev="3.1.6" conf="default"/>
<dependency org="org.apache.cxf" name="cxf-rt-rs-extension-providers" rev="3.1.6" conf="default"/>
弹簧CXF配置
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
xmlns:jaxrs="http://cxf.apache.org/jaxrs" xmlns:jaxws="http://cxf.apache.org/jaxws"
xmlns:http-conf="http://cxf.apache.org/transports/http/configuration"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:cxf="http://cxf.apache.org/core"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd
http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd"
default-lazy-init="false">
<import resource="classpath:META-INF/cxf/cxf.xml" />
<!-- JAX-WS server-->
<bean id="sampleEndPointImpl" class="com.SampleEndPointImpl" />
<jaxws:endpoint id="sampleServiceSOAP"
address="/sampleEndPoint"
endpointName = "SampleEndPoint"
implementor="#sampleEndPointImpl" >
</jaxws:endpoint>
<!-- JAX-RS server-->
<bean id="bookService" class="com.BookService" />
<jaxrs:server id="bookservice" address="/">
<jaxrs:serviceBeans>
<ref bean="bookService" />
</jaxrs:serviceBeans>
</jaxrs:server>
<cxf:bus>
<cxf:properties>
<entry key="org.apache.cxf.stax.maxAttributeSize" value="1"/>
<entry key="org.apache.cxf.stax.maxChildElements" value="1"/>
<entry key="org.apache.cxf.stax.maxElementDepth" value="1"/>
<entry key="org.apache.cxf.stax.maxAttributeCount" value="1"/>
<entry key="org.apache.cxf.stax.maxTextLength" value="1"/>
<entry key="org.apache.cxf.stax.maxElementCount" value="1"/>
</cxf:properties>
</cxf:bus>
</beans>
示例REST服务器
BookService.java
@POST
@Path("/test")
@Consumes(MediaType.APPLICATION_XML)
public Response test(Book book) {
return Response.ok(book.getName() + "123").build();
}
Book.java
@XmlRootElement(name = "Book")
public class Book {
private String name;
public String getName() {return name;}
public void setName(String name) {this.name = name;}
}
请求测试
POST /test
Content-Type:application/xml
<Book><name>aaaa</name></Book>
收到错误
JAXBException occurred : Maximum Element Depth limit (1) Exceeded. Maximum Element Depth limit (1) Exceeded.
如果删除<cxf:bus>
部分,将应用CXF default values,并处理XML示例
aaaa123
答案 1 :(得分:0)
在cxf 3.2.4中,以总线方式进行配置对我没有任何帮助。 在端点级别配置后,一切都像超级按钮一样工作:
<jaxws:endpoint address="/myEndpoint" id="myEndpoinId" implementor="#myEndpoint">
<jaxws:properties>
<entry key="org.apache.cxf.stax.maxTextLength" value="536870912"/>
</jaxws:properties> (...)