本文介绍了jbas015852无法索引类java.lang.IllegalStateException:未知标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当部署到本地JBOSS服务器时,会发生此错误.有解决此警告的方法吗?

This error happens when deploying to a local JBOSS server. Is there a way to resolve this warning?

对正在发生的事情的解释也将不胜感激.

An explanation of what is going on would be much appreciated, too.

推荐答案

我正在使用带有6.3.3补丁的JBoss EAP 6.3,但要解决该问题,我需要使用JBoss EAP 6.4中的jandex.我只是在JBoss模块中将"jandex-1.0.3.Final-redhat-2.jar"替换为"jandex-1.2.2.Final-redhat-1.jar",问题就解决了.

I'm using JBoss EAP 6.3 with patch 6.3.3 but to solve the problem I need to use jandex from JBoss EAP 6.4. I just replace "jandex-1.0.3.Final-redhat-2.jar" for "jandex-1.2.2.Final-redhat-1.jar" in JBoss modules and problem was solved.

JBoss中存在一个问题,可能是Jandex无法索引的Java 8或lambda表达式问题.参见此链接这是问题 1193113 的链接希望对您有帮助

There is a issue in JBoss of it, maybe problems with Java 8 or lambda expressions that Jandex can´t index. See this link This is the link of the issue Bug 1193113I hope that help you

这篇关于jbas015852无法索引类java.lang.IllegalStateException:未知标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 08:35