一:整合Listener
1.通过注解扫描完成Listener组件的注册
2.通过方法完成Listener组件注册
二:访问静态资源
1.SpringBoot从classpath/static的目录
(根目录名称必须是static)
2.ServletContext根目录下
(在src/main/webapp 目录名称必须要webapp)
三:文件上传
upload.html页面
Controller中的类
要在src/main/resource下面创建application.properties
spring.http.multipart.maxRequestSize=200MB 是设置一次上传文件的总容量。
四:SpringBoot整合JSP技术
创建springboot的全局配置文件,application.properties
创建controller类
创建JSP--userList.jsp
创建启动类