Java单元测试之 Apache CXF Restful

為{幸葍}努か 提交于 2020-05-01 18:18:12

Apache CXF框架的单元测试需要内置Jetty容器

<dependency>
   <groupId>org.eclipse.jetty</groupId>
   <artifactId>jetty-webapp</artifactId>
   <version>${jetty.version}</version>
   <scope>test</scope>
</dependency>

下面是一个基于Spring框架的Apache CXF测试示例

applicationContext-restful.xml

<import resource="classpath:META-INF/cxf/cxf.xml" 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!