I understand beans in my main-servlet.xml is in child context. And based on research I know I can get root ApplicationContext within my GreetingController through WebApplicationContextUtils. Which I'll get null because i didn't define such a root context in web.xml.
Now my question is how can i get child context and do something like childContext.getBean("forfun") without @AutoWired annotation,I think I've tested it and it works;
Thanks in advance for your reading and info.
Edit: AutoWire the ApplicationContext or implement ApplicationContextAware will help you get both the child and root ApplicationContext.
Edit2:I found another way to get the context created by defaultdispacher, the context is actually stored in servletcontext attributes with name org.springframework.web.servlet.FrameworkServlet.CONTEXT.(servletName)
supposed your default servlet is main, you can get the context craete by defaultdispacher[main-servlet.xml] with the following code.ApplicationContext context1=(WebApplicationContext) request.getSession().getServletContext().getAttribute("org.springframework.web.servlet.FrameworkServlet.CONTEXT.main")
But still don't understand why in the WebApplicationContextUtils method we can't access child context.
web.xml file
<webapp>
<servlet>
<servlet-name>main</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/main-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>main</servlet-name>
<url-pattern>/main/*</url-pattern>
</servlet-mapping>
</web-app>
main-servlet.xml
<beans>
<bean name ="/testing/*" class="springmvc.GreetingController"></bean>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/Jsp/"
p:suffix=".jsp"/>
<bean id="forfun" class="springmvc.Foo"></bean>
</beans>
GreetingController.java
@Controller
public class GreetingController {
@AutoWired
Foo forfun;//this works even if forfun is defined in main-servlet.xml
@RequestMapping("/testing")
public String testing(HttpServletRequest request){
ApplicationContext context =
WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext);
Foo f=(Foo) context.getBean("forfun");//supposed to work if i have it defined in root context
/*
I would something like this
ChildContext child = Utils.getChildContext(request);
Foo f=(Foo) child.getBean("forfun");
*/
return "test";
}
}
WebApplicationContext? - Sotirios Delimanolis