在 JBoss AS 6 上将 Spring 库从 WEB-INF/lib 移动到 server/default/lib 时出现 java.lang.NoClassDefFoundError

发布于 2024-11-02 15:32:14 字数 287 浏览 0 评论 0原文

我试图通过将 Spring 库从 WEB-INF/lib 移动到 server/default/lib 来加速构建过程,但不幸的是我得到了这个异常:

将上下文初始化事件发送到类 org.jboss.web.jsf.integration.config.JBossMojarra20 的侦听器实例时发生异常 配置侦听器:java.lang.NoClassDefFoundError:javax/faces/application/ApplicationFactory

I'm trying to speedup my build process by moving Spring libraries from WEB-INF/lib to server/default/lib, but unfortunately i get this exception:

Exception sending context initialized event to listener instance of class org.jboss.web.jsf.integration.config.JBossMojarra20
ConfigureListener: java.lang.NoClassDefFoundError: javax/faces/application/ApplicationFactory

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心的位置 2024-11-09 15:32:14

JBoss 包含它自己的 JSF 库和实现。如果您将 WebFlow 库移至 JBoss 自己的库目录中,您将面临与现有库发生冲突的风险。

您需要非常小心地向 JBoss 自己的类路径添加内容,它经常会产生奇怪的副作用和错误,就像这个一样。

您需要从 JBoss 内部删除 JSF 内容(这并不容易),或者将 WebFlow 库保留在它们所属的位置 - 在 WEB-INF/lib 下。

JBoss contains its own JSF libraries and implementations. If you move the WebFlow libraries into JBoss's own library directories, you run the risk of these clashing with what's already present.

You need to be very careful adding stuff to JBoss's own classpath, it often gives weird side-effects and errors, like this one.

You need to either remove the JSF stuff from JBoss's internals (not easy), or keep the WebFlow libs where they belong - under WEB-INF/lib.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文