spring-resteasy integration provided by EAP 6.2.0.GA (resteasy-spring.jar version 2.3.7.Final-redhat-2) does not work with spring 4.x.
Root cause is that integration currently uses method, which was deprecated in spring 3.x and removed in 4.x
package org.springframework.web.context;
...
public class ContextLoaderListener extends ContextLoader implements ServletContextListener {
...
/**
* Create the ContextLoader to use. Can be overridden in subclasses.
* @return the new ContextLoader
* @deprecated in favor of simply subclassing ContextLoaderListener itself
* (which extends ContextLoader, as of Spring 3.0)
*/
@Deprecated
protected ContextLoader createContextLoader() {
returnnull;
}
...
}
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
spring-resteasy integration provided by EAP 6.2.0.GA (resteasy-spring.jar version 2.3.7.Final-redhat-2) does not work with spring 4.x.
Root cause is that integration currently uses method, which was deprecated in spring 3.x and removed in 4.x