“无法在指定模块中加载 Servlet 类”将 servlet 添加到 war 文件时显示
我正在使用 sun java app server 8.0 PE,我已经创建了 web 应用程序并添加了一些 servlet 并成功部署。一段时间后,我再次尝试添加其他 servlet 作为 Web 组件,在添加时出现以下错误,到底是什么问题?
“无法加载 servlet 类 在模块中指定,
java.lang.ClassNotFoundException: junit/框架/测试用例”
I'm using sun java app server 8.0 PE, I have created webapplication and added some servlets and deployed successful. after some time I again, tried to add someother servlet as a webcomponent, while adding I got following error , what is problem exactly?
"Unable to load servlet calss
specified in module,java.lang.ClassNotFoundException:
junit/framework/Testcase"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你需要添加一个库。您的应用程序似乎引用了未加载(或创建)的类。
I think that you need to add a library. Your application seems to reference to a class that is not loaded (or founded).
解决方案:
只需从 webapp 或 war 文件中删除库,然后使用库添加 servlet 类即可。这将成功地将 servlet 添加为 Web 组件。
@Aito:感谢您的想法
Solution:
Just remove the libraries from the webapp or war file, and add servlet class now with library. this will add the servlet as web component successfully..
@Aito: thanks for your idea