Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Spring 教程创建了一个 Soap 客户端:https ://spring.io/guides/gs/sumption-web-service/
使用 Java 对象可以正常工作。
我想知道是否有一种方法可以获得服务发送的响应(有效负载,最好没有 SOAP 包装器)?
谢谢
您可以在日志应用程序中看到您发送到 SOAP 服务的请求和服务返回的响应,将此属性添加到您的 application.properties
logging.level.org.springframework.ws=TRACE
或者如果您使用的是 application.yaml 的话
logging: level: org: springframework: ws: TRACE