java 中 filter 的 问题
code:publicclassRecordFilterimplementsFilter{@ResourceprivateEmployeesServiceemployee...
code:
public class RecordFilter implements Filter {
@Resource
private EmployeesService employeesService;
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
chain.doFilter(request, response);
}
}
以上代码中:使用@Resource创建EmployeesService实例,在服务器启动时候会报错,请问高手们是Filter中不能以这种方式创建呢还是别的问题? 展开
public class RecordFilter implements Filter {
@Resource
private EmployeesService employeesService;
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
chain.doFilter(request, response);
}
}
以上代码中:使用@Resource创建EmployeesService实例,在服务器启动时候会报错,请问高手们是Filter中不能以这种方式创建呢还是别的问题? 展开
展开全部
不能用注解注入。如果你这样做的话就意味着你的filter也要被spring管理起来。但事实上spring并没有管理它。
改造方法:应该用ApplicationContext 从容器里获取bean。最好在init方法获取employeesService;
如:@Override
public void init(FilterConfig arg0) throws ServletException { ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext*.xml"); employeesService= (EmployeesService ) ctx.getBean("employeesService"); }
改造方法:应该用ApplicationContext 从容器里获取bean。最好在init方法获取employeesService;
如:@Override
public void init(FilterConfig arg0) throws ServletException { ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext*.xml"); employeesService= (EmployeesService ) ctx.getBean("employeesService"); }
追问
这样有问题
追答
没有问题呀。如果你非要给filter注入业务bean。那么只有使用一个filter的代理。这个代理也是filter,由web容器管理。另一个filter由spring管理。代理调用spring中的filter。
展开全部
你的resourse没有指定引入的名字 虽然测试了几次 有时候通过 有时候不通过 但是建议还是写上最好
@Resource(name=“employeService”)
@Resource(name=“employeService”)
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
RecordFilter 不在指定的目录,不会被扫描到
追问
怎么解决
追答
放面spring扫描的目录中。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2018-07-05 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
能用注解注入。如果你这样做的话就意味着你的filter也要被spring管理起来。但事实上spring并没有管理它。
改造方法:应该用ApplicationContext 从容器里获取bean。最好在init方法获取employeesService;
如:@Override
public void init(FilterConfig arg0) throws ServletException { ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext*.xml"); employeesService= (EmployeesService ) ctx.getBean("employeesService"); }
改造方法:应该用ApplicationContext 从容器里获取bean。最好在init方法获取employeesService;
如:@Override
public void init(FilterConfig arg0) throws ServletException { ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext*.xml"); employeesService= (EmployeesService ) ctx.getBean("employeesService"); }
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询