当前位置: 首页 > 工具软件 > Errai > 使用案例 >

解决 Not installing optional component org.jboss.errai.bus.server.servlet.StandardAsyncServlet$1

浦墨竹
2023-12-01

运行jboss出现
Not installing optional component org.jboss.errai.bus.server.servlet.StandardAsyncServlet$1 due to exception: org.jboss.as.server.deployment.DeploymentUnitProcessingException: JBAS011054: Could not find default constructor for class org.jboss.errai.bus.server.servlet.StandardAsyncServlet$1
解决方法:修改JBoss的配置文件,如果是以standalone模式就修改standalone.xml

<profile>
        <subsystem xmlns="urn:jboss:domain:logging:1.1">
            <console-handler name="CONSOLE">
                <level name="INFO"/>
            /*     **<filter> 添加此块代码
                    <not>
                        <match pattern="JBAS011006"/>
                    </not>
                </filter>**     */
                .........

原问题地址:http://stackoverflow.com/questions/13922221/jbas011006-not-installing-optional-component-standardservletasyncwebrequest-due

 类似资料: