Specify the order of operations in Spring generated WSDL

We use the WSSpringServlet (Spring 4.10) to publish the auto-generated WSDL, but it seems that it generates different WSDLs for each run. Is there a way to force strict sorting? Even in alphabetical order would be enough.

+5
source share
1 answer

It is not possible to maintain consistent WSDL when you generate dynamically. It is strongly recommended that you generate it at design time and use statics in higher environments. The Spring doc says the same thing here .

Go to section 5.3.1.1. Auto Exposure WSDL β†’ Attention

+1
source

Source: https://habr.com/ru/post/1246377/


All Articles