问题标签 [pitchfork]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - Weblogic 10.3.3/Pitchfork 的 ClassCastException
我们正在尝试将 Spring 应用程序部署到 Weblogic 10.3.3。我们创建了一个 war 文件,它可以很好地与 tomcat 配合使用,但是,当尝试将其打包为一个耳朵以与 weblogic 一起使用时,我们遇到了 Pitchfork 的问题:
java.lang.ClassCastException
:org.springframework.jee.spi.PitchforkUtilsImpl
不能转换为com.oracle.pitchfork.interfaces.PitchforkUtils
为什么 Weblogic 试图投射这个,我们做错了什么?
谢谢。
spring - 在 WebLogic 上部署 Spring 应用程序的问题
我们正在尝试在 Weblogic 10.3.3 上使用 Spring 运行应用程序。显然,这应该很简单,只涉及确保各种附加 jar(特别是干草叉)位于 weblogic 的库目录中,并正确配置。不幸的是,当我们尝试部署时,我们不断遇到错误:
java.lang.ClassCastException:org.springframework.jee.spi.PitchforkUtilsImpl 不能转换为 com.oracle.pitchfork.interfaces.PitchforkUtils
这似乎是合理的,因为 PitchforkUtilsImpl 没有实现 com.oracle.pitchfork.interfaces.PitchforkUtils - 它实现了一些该名称的 springframework 接口。
任何人都可以就我们做错了什么提供一些建议吗?