我经常在服务器中遇到查找失败问题。
无法获取BinRemote的远程句柄。 :无法解决 'BinBean#com.mine.org.bin.BinRemote.qaw10-51865'。解决 'BinBean#com.mine.org.bin.BinRemote'可能版本'qaw10-51865' 申请'MYJms'退休了。放松查找返回 活动版本,设置定义的上下文环境属性 weblogic.jndi.WLContext.RELAX_VERSION_LOOKUP为“true”。
我很高兴并建议将weblogic.jndi.WLContext.RELAX_VERSION_LOOKUP
设置为true
。我该怎么办?我不擅长WL。请帮忙。
提前致谢。
答案 0 :(得分:0)
刚刚找到此链接,并将其添加到jvm选项。
答案 1 :(得分:0)
要将RELAX_VERSION_LOOKUP应用于一个区域,请使用:
Environment env = new Environment();
env.setProperty(weblogic.jndi.WLContext.RELAX_VERSION_LOOKUP, "true");
env.getInitialContext().lookup(...);