Glassfish 3.1 中缺少 jar?
自从迁移到 Glassfish 3.1 以来,我的项目无法获取:com.sun.xml.rpc.client.StubPropertyConstants;
。 Glassfish 2.1 在以下位置找到了此类:webservices-rt.jar。
Glassfish 3.1 是否与该库捆绑在一起?
Since migrating to Glassfish 3.1, my project cant source: com.sun.xml.rpc.client.StubPropertyConstants;
. Glassfish 2.1 found this class under: webservices-rt.jar.
Does Glassfish 3.1 bundle with this library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能需要
jaxrpc-impl.jar< /代码>
You might need the
jaxrpc-impl.jar
不,该类位于 GlassFish 3.1 module/webservices-osgi.jar 中
,但您可能会遇到 OSGi 类加载隔离,这是一件好事......
No, the class is in GlassFish 3.1 modules/webservices-osgi.jar
But you might be hitting OSGi class loading isolation, which is a good thing...
我不确定为什么 - 不过,通过右键单击
Libraries
并选择Add Library
将 JAXWS-2.1 库添加到我的项目中修复了此问题。我还打开了jdk/jre/libs
目录,并添加了一个带有webservices-api.jar
的认可文件夹。I'm not certain as to why - although, adding the JAXWS-2.1 libraries to my project by right clicking
Libraries
and selectedAdd Library
fixed this issue. I also opened myjdk/jre/libs
dir and added an endorsed folder withwebservices-api.jar
.