我有一个部署在 tomcat 上的 Spring boot 应用程序,应用程序上下文在 application.yml 中配置为 /soapws 我已经在端点服务上部署了一个 SOAP WS。 ServletRegistrationBean 设置有 URL 映射 /soapws
在 tomcat 应用程序前面,我有 apache,我正在将 /soapws/* 的请求代理到 tomcat 实例。
我可以通过 https://host:port/soapws/soapws/service.wsdl 访问我的 soap WSDL
这不是我想要的 这应该可以通过 https://host:port/soapws/service.wsdl 访问,但如果使用 /*
设置 ServletRegistrationBean,我的应用程序不会部署我需要做哪些改变?