I have a java application which is developed in Spring 4, hibernate 4 and java 8. I deploying it in wildfly 8.4 using Eclipse Luna.
But it is not deploying. When I am trying to access the application it is saying "forbidden"
on the screen.
Then, I checked my console, I found few warnings
22:44:26,550 WARN [org.jboss.as.ee] (MSC service thread 1-8) JBAS011006: Not installing optional component org.springframework.http.server.ServletServerHttpAsyncRequestControl due to an exception (enable DEBUG log level to see the cause)
22:44:26,552 WARN [org.jboss.as.ee] (MSC service thread 1-8) JBAS011006: Not installing optional component org.springframework.web.context.request.async.StandardServletAsyncWebRequest due to an exception (enable DEBUG log level to see the cause)
22:44:26,885 WARN [org.jboss.weld.deployer] (MSC service thread 1-8) JBAS016012: Deployment deployment "application.war" contains CDI annotations but no bean archive was found (no beans.xml or class with bean defining annotations).
Do I need to solve this warnings? What is reason it is not reading my application's annotations? How can I solve this issue?