Package ee.devclub.rest

Source Code of ee.devclub.rest.SpringAwareResource

package ee.devclub.rest;

import org.springframework.web.context.support.WebApplicationContextUtils;
import org.springframework.web.context.support.XmlWebApplicationContext;

import javax.servlet.ServletContext;
import javax.ws.rs.core.Context;

/**
* Injects spring beans into jersey resources
*/
public abstract class SpringAwareResource {
    @Context
    public void setContext(ServletContext sc) {
        autowire(sc);
    }

    public void autowire(ServletContext sc) {
        autowire(sc, this);
    }

    public static void autowire(ServletContext sc, Object target) {
        XmlWebApplicationContext context = (XmlWebApplicationContext) WebApplicationContextUtils.getWebApplicationContext(sc);
        context.getBeanFactory().autowireBean(target);
    }
}
TOP

Related Classes of ee.devclub.rest.SpringAwareResource

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.