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.
我想从我的 Maven Webapp 的 POM 文件中引用一个 WSDL 文件。它位于 ..WebApp\src\main\webapp\WSDL\NewWebService.wsdl。
WSDL/NewWebService.wsdl
这给了我错误,请提出建议。
提前致谢!
您可以使用 maven property 引用路径${basedir}。
${basedir}
<wsdl>${basedir}/src/main/webapp/WSDL/NewWebService.wsdl</wsdl>
或者
<file>${basedir}/src/main/webapp/WSDL/NewWebService.wsdl</file>
或者是其他东西。(你没有说任何关于使用过的 maven-plugin)