4.10 整合Servlet、Filter和Listener
一般情况下,使用Spring、Spring MVC这些框架之后,基本上就告别Servlet、Filter以及Listener 了,但是有时在整合一些第三方框架时,可能还是不得不使用Servlet,比如在整合某报表插件时就需要使用Servlet。Spring Boot中对于整合这些基本的Web组件也提供了很好的支持。
1. 启动类
启动类上添加@ServletComponentScan描述
@ServletComponentScan
public class RuoYiApplication {
public static void main