JBAS011006 Do not install the optional StandardServletAsyncWebRequest component due to a DeploymentUnitProcessingException

Since Spring 3.2 has released the GA version, I would like to upgrade my Spring 3.1.2 application to the newest version. The application runs on JBoss 7.1.1.Final. Everything else went fine, except that I received an error message below JBoss, which I find annoying (although the application works fine). Any idea?

15:50:06,865 WARN [org.jboss.as.ee] (MSC service thread 1-13) JBAS011006: Not installing optional component org.springframework.web.context.request.async.StandardServletAsyncWebRequest due to exception: org.jboss.as.server.deployment.DeploymentUnitProcessingException: JBAS011054: Could not find default constructor for class org.springframework.web.context.request.async.StandardServletAsyncWebRequest at org.jboss.as.ee.component.ComponentDescription$DefaultComponentConfigurator.configure(ComponentDescription.java:606) at org.jboss.as.ee.component.deployers.EEModuleConfigurationProcessor.deploy(EEModuleConfigurationProcessor.java:81) at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:113) [jboss-as-server-7.1.1.Final.jar:7.1.1.Final] at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811) [jboss-msc-1.0.2.GA.jar:1.0.2.GA] at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746) [jboss-msc-1.0.2.GA.jar:1.0.2.GA] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [rt.jar:1.7.0_05] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [rt.jar:1.7.0_05] at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_05] 
+4
source share
1 answer

To suppress this warning message, add the following lines to your Jboss configuration (standalone.xml if you are using it offline)

 <?xml version='1.0' encoding='UTF-8'?> <server xmlns="urn:jboss:domain:1.1"> ... <profile> <subsystem xmlns="urn:jboss:domain:logging:1.1"> <console-handler name="CONSOLE"> <level name="INFO"/> <filter> <not> <match pattern="JBAS011006"/> </not> </filter> ... 

As you can check javadocs , there is no default constructor for this class.
Since this is just a warning, and everything is going well, you can ignore it.

+3
source

All Articles