struts2 拦截器,使用spring注入

Posted siashan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts2 拦截器,使用spring注入相关的知识,希望对你有一定的参考价值。

ActionContext actionContext = invocation.getInvocationContext();
ServletContext context = (ServletContext) actionContext.get(StrutsStatics.SERVLET_CONTEXT);
WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(context);
OperatorDao operatorDao = (OperatorDao) ctx.getBean("agentOperatorDao");

以上是关于struts2 拦截器,使用spring注入的主要内容,如果未能解决你的问题,请参考以下文章

JAVA框架--hibernatestruts2spring

hibernate+spring+struts2整合

想学习框架,SSH好还是SSM好,新手

struts2 参数注入 方法拦截器

struts2的拦截器跟spring2 AOP有啥区别?哪个好?

struts2的拦截器和spring的AOP哪个实现权限管理更好