Spring boot 使用@webFilter在tmocat运行后@Autowired没起作用

问题原因
web应用启动的顺序是:listener->filter->servlet ,bean没有注入
解决办法
未生效的代码
@WebFilter(filterName="wechatFilter",urlPatterns="/index")
public class WeChatFilter implements Filter {
@Autowired
private WxMpService wxService;
@Override
public void init(FilterConfig filterConfig) throws ServletException {
System.out.println("----wechatFilter过滤器初始化----");
}
public void test(
System.out

Spring boot 使用@webFilter在tmocat运行后@Autowired没起作用最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/9639.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>