Class SpringContextLoaderSupport

java.lang.Object
org.jboss.resteasy.plugins.spring.SpringContextLoaderSupport

public class SpringContextLoaderSupport extends Object
Provides access to RESTEasy's SpringContextLoader implementation without having to extend ContextLoader. This is useful if you have your own SpringContextLoaderListener and dont' want to return RESTEasy's SpringContextLoader. Usage:
 public class MyCustomSpringContextLoader extends ContextLoader
 {
    private SpringContextLoaderSupport springContextLoaderSupport =
       new SpringContextLoaderSupport();

     protected void customizeContext(
        ServletContext servletContext,
        ConfigurableWebApplicationContext configurableWebApplicationContext)
    {
       super.customizeContext(servletContext, configurableWebApplicationContext);

       // Your custom code

       this.springContextLoaderSupport.customizeContext(servletContext.configurableWebApplicationContext);

       // Your custom code
    }
 }
 
  • Constructor Details

    • SpringContextLoaderSupport

      public SpringContextLoaderSupport()
  • Method Details

    • customizeContext

      public void customizeContext(jakarta.servlet.ServletContext servletContext, org.springframework.web.context.ConfigurableWebApplicationContext configurableWebApplicationContext)