Package com.cedarsoftware.servlet

Examples of com.cedarsoftware.servlet.AppCtx


{
    public static AppCtx getAppCtx(final ServletContext servletContext)
    {
        final ApplicationContext appCtx = WebApplicationContextUtils.getWebApplicationContext(servletContext);

        return new AppCtx()
        {
            public Object getBean(String name)
            {
                return appCtx.getBean(name);
            }
View Full Code Here

TOP

Related Classes of com.cedarsoftware.servlet.AppCtx

Copyright © 2018 www.massapicom. 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.