Spring-WS:如何在不启动Web服务的情况下生成WSDL?
我们使用 Spring-WS 作为实现 Web 服务的基础(使用框架生成的 WSDL)。除了 WAR 文件之外,我们的构建还生成一个客户端 JAR(供我们的 Java 客户端和我们自己的端到端功能测试使用),其中包含模式生成的 DTO 和 Web 服务方法的存根。它们是使用 wsimport (JAX-WS) 生成的。问题是这会产生一个多步骤的构建过程:
- 构建服务器 WAR 文件;
- 启动 Tomcat(使 WSDL 可用);
- 生成客户端存根(将 wsimport 指向 WSDL url)。
是否有某种方法无需启动 Web 服务即可生成 WSDL? 然后我们可以一步构建所有内容。
We use Spring-WS as the basis for implementing a web service (with the WSDL generated by the framework). As well as a WAR file our build produces a client side JAR (for use by our Java clients and our own end-to-end functional tests) consisting of schema generated DTOs and stubs for the web service methods. These are generated using wsimport (JAX-WS). Problem is this gives rise to a multi-step build process:
- Build the server WAR file;
- Start Tomcat (to make the WSDL available);
- Generate the client side stubs (pointing wsimport at the WSDL url).
Is there some way to generate the WSDL without having to start the web service? Then we could build everything in a single step.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此示例代码适用于 Ant 任务的基础:
This example code is suitable for the basis of an Ant task:
另一种选择可能是从应用程序上下文中获取已配置的 bean:
Another option may be to get already configured bean from app context: