Java JRE 8 与 weblogic 10.3.6 (11g) 的兼容性
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/22513660/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
JRE 8 compatibility with weblogic 10.3.6 (11g
提问by user2187029
Could you please help in finding out if JRE 8 would be compatible with weblogic 10.3?
您能否帮助确定 JRE 8 是否与 weblogic 10.3 兼容?
We have a swing based application deployed on weblogic 10.3 server. We want to upgrade our JRE so wanted to check if JRE 8 would be able to run apps deployed on weblogic 10.3
我们在 weblogic 10.3 服务器上部署了一个基于 Swing 的应用程序。我们想升级我们的 JRE,所以想检查 JRE 8 是否能够运行部署在 weblogic 10.3 上的应用程序
回答by Jay
Java 8 is not yet supported in Weblogic server (till Weblogic 12.1.2). It would be supported in future release.
Weblogic 服务器尚不支持 Java 8(直到 Weblogic 12.1.2)。它会在未来的版本中得到支持。
回答by Stephen Felts
Java 8 is supported on WebLogic Server 12.1.3. It is not supported on 10.3.6, 12.1.1, or 12.1.2.
WebLogic Server 12.1.3 支持 Java 8。10.3.6、12.1.1 或 12.1.2 不支持它。
See https://blogs.oracle.com/WebLogicServer/entry/weblogic_server_12_1_3
请参阅https://blogs.oracle.com/WebLogicServer/entry/weblogic_server_12_1_3
回答by Flare Star
Bit old topic, but just came across this issue myself and have a bit more to add to it. As with the existing answers, it can't be used to install directly- the oracle installer will complain. However, it is possible to install using an earlier JDK (6 or 7 are supported in 10.3.6), and then swap to JDK8 under the covers. I expect you could also use a custom install to bypass the installer entirely.
有点老的话题,但我自己刚刚遇到了这个问题,并有更多的补充。与现有答案一样,它不能用于直接安装 - oracle 安装程序会抱怨。但是,可以使用较早的 JDK(10.3.6 支持 6 或 7)进行安装,然后在幕后切换到 JDK8。我希望您也可以使用自定义安装来完全绕过安装程序。
This obviously isn't supported - but it does run. If you try to use certain JDK8 features though, they tend not to work (such as newer jdbc drivers - 4.2 simply won't run), so there isn't much benefit to this in normal use cases.
这显然不受支持 - 但它确实运行。但是,如果您尝试使用某些 JDK8 功能,它们往往不起作用(例如较新的 jdbc 驱动程序 - 4.2 根本无法运行),因此在正常用例中这没有太大好处。