Spring WS AbstractJDomPayloadEndpoint deprecated warning
For my java soap webservice, Spring-ws says AbstractJDomPayloadEndpoint deprecat开发者_StackOverflow中文版ed and I get warning in my code, even debugger does not hit any point in the class, how can I change it? do I need to change a lot of things?
AbstractJDomPayloadEndpoint
, like all PayloadEndpoint
implementations, is deprecated in Spring-WS 2.x, in favour of annotation-style endpoint classes.
However, the old endpoint classes still work fine. If your service isn't working, this has nothing to do with the deprecation.
精彩评论