忽略错误的 wsdl=http://localhost:8080/service/wsdl

忽略错误的 wsdl=http://localhost:8080/service/wsdl

我在 catalina.log 中收到警告

com.sun.xml.ws.transport.http.DeploymentDescriptorParser getPrimaryWSDL 警告:忽略错误的 wsdl=http://localhost:8080/service/wsdl。它应该以 WEB-INF/wsdl 开头。将生成并发布新的 WSDL。

我只需要知道它从哪里读取这些信息wsdl=http://localhost:8080/service/wsdl,我检查过web.xml文件并且它不包含这些信息。

我已经在互联网上检查了该方法getPrimaryWSDL,但我找不到在哪里读取此信息:

if (wsdlFile != null) {
            if (!wsdlFile.startsWith(JAXWS_WSDL_DD_DIR)) {
                logger.log(Level.WARNING, "Ignoring wrong wsdl={0}. It should start with {1}. Going to generate and publish a new WSDL.", new Object[]{wsdlFile, JAXWS_WSDL_DD_DIR});
                return null;
            }

有人可以帮忙解释一下吗?

相关内容