本文主要是介绍The type javax.xml.rpc.ServiceException cannot be resolved. It is indirectly referenced from require,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
The type javax.xml.rpc.ServiceException cannot be resolved.
It is indirectly referenced from required .class files
解决:导入jaxrpc-api, axis.jar
<dependency><groupId>javax.xml</groupId><artifactId>jaxrpc-api</artifactId><version>1.1</version>
</dependency>
<dependency><groupId>org.apache.axis</groupId><artifactId>axis</artifactId><version>1.4</version>
</dependency>
这篇关于The type javax.xml.rpc.ServiceException cannot be resolved. It is indirectly referenced from require的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!