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>
本文介绍了解决Thetypejavax.xml.rpc.ServiceExceptioncannotberesolved错误的方法,通过导入jaxrpc-api和axis.jar两个依赖库,可以有效解决该问题。具体操作包括在项目中添加相应依赖,确保项目的正常运行。
3652

被折叠的 条评论
为什么被折叠?



