Spring Boot的Web开发支持
第一部分:springmvc默认配置(建议了解)
配置文件存储位置:Web相关的自动配置存储在spring-boot-autoconfigure-2.0.4RELEASE.jar的org.springframework.boot.antoconfigure.web及其子包中
1)jsp文件路径
-
更改application.properties,增加以下两句
spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp -
在webapp/WEB-INF/jsp下建立hello.jsp
<body>
<h1>hello hello.jsp test view prefix and suffix</h1>
<h2>获取值${msg }</h2>
</body>
</html> -
controller:
@RequestMapping("/hello2")
public ModelAndView hello2() {
ModelAndView mav = new ModelAndView();
mav.addObject("msg", "test prefix and suffix");
mav.setViewName("hello");
return mav;
} -
浏览器输入http://localhost/haha/hello2测试结果
接下来我们引入js,试一下效果。
自定义资源位置和映射:
参考:https://www.cnblogs.com/xbq8080/p/7774856.html
第一种方式:自动配置静态资源
在自动配置类的addResourceHandlers方法中定义了静态资源的自动配置。
Spring Boot的静态资源配置有两项
spring.mvc.static-path-pattern 配置访问路径 默认/**
spring.resources.static-locations 静态资源文件位置
默认的官方配置如下:
spring.mvc.static-path-pattern=/**
spring.resources.static-locations= classpath:/static,classpath:/public,classpath:/resources,classpath:/META-INF/resources
我们当然可以把js,css放到上述默认路径下,比如我们把jquery的文件放到src/main/resource/static/js/下。
修改上节课的hello.jsp, 增加如下代码
<script type="text/javascript" src="<%=request.getContextPath()%>/js/jquery-1.11.2.min.js"></script>
<script>
$(function(){
alert("jquery调用 ");
})
</script>
输入网址测试一下:http://localhost/haha/hello2
很多时候,我们希望把jsp页和js,css都放到webapp目录下,就可以通过修改默认配置实现
如果想更改默认配置,参考以下:(学生完成编写和测试)
第二种 自定义静态资源位置(修改application.properties默认配置)
spring.mvc.static-path-pattern=/js/**
spring.resources.static-locations=/js/
第三种 自定义资源映射实现方式(推荐)
自定义一个配置类,实现WebMvcConfigurer接口
重写addResourceHandlers方法
通过addResourceHandler添加映射路径(对外访问路径)
通过addResourceLocations来指定文件存放路径
重写addResourceHandlers方法,并不会覆盖配置文件中的配置
package com.neuedu.demo.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class MyMvcConfig implements WebMvcConfigurer{
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
//如下配置,js文件放到webapp/js下
//测试方法http://localhost:8080/js/test1.js
//registry.addResourceHandler("/js/**").addResourceLocations("/js/");
}
}
静态首页的支持
默认把静态index.html文件放置在如下目录
classpath:/META-INF/resources/index.html
classpath:/resources/index.html
classpath:/static/index.html
classpath:/public/index.html
当我们访问应用根目录http://localhost:8080/时,会直接映射
注意:如果配置了自己的静态文件访问路径,则必须放到自己的目录下,即我们做了1.1配置则把文件放到src/main/webapp/static目录下
使用总结:
- 不在application.properties里做静态资源配置(*.html的可以放到默认目录下)。
- js,css,images等在*.java里配置访问权限。
4)配置拦截器(了解)
demo-web4工程
自定义一个配置类,实现WebMvcConfigurer接口
重写addInterceptors方法
addInterceptor方法,添加自定义的拦截器
addPathPatterns方法,拦截的uri
excludePathPatterns方法,排除拦截的uri
step1 定义拦截器,同springmvc写法implements HandlerInterceptor
package com.neuedu.demo.interceptor;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
public class HandlerInterceptor1 implements HandlerInterceptor{
//进入 Handler方法之前执行
//用于身份认证、身份授权
//比如身份认证,如果认证不通过表示当前用户没有登陆,需要此方法拦截不再向下执行
@Override
public boolean preHandle(HttpServletRequest request,
HttpServletResponse response, Object handler) throws Exception {
System.out.println("HandlerInterceptor1...preHandle");
//return false表示拦截,不向下执行
//return true表示放行
return true;
}
//进入Handler方法之后,返回modelAndView之前执行
//应用场景从modelAndView出发:将公用的模型数据(比如菜单导航)在这里传到视图,也可以在这里统一指定视图
@Override
public void postHandle(HttpServletRequest request,
HttpServletResponse response, Object handler,
ModelAndView modelAndView) throws Exception {
System.out.println("HandlerInterceptor1...postHandle");
}
//执行Handler完成执行此方法
//应用场景:统一异常处理,统一日志处理
@Override
public void afterCompletion(HttpServletRequest request,
HttpServletResponse response, Object handler, Exception ex)
throws Exception {
System.out.println("HandlerInterceptor1...afterCompletion");
}
}
HandlerInterceptor2(略)
step2 配置使用拦截器,addPathPatterns为拦截哪些地址,excludePathPatterns为排除哪些地址
@Override
public void addInterceptors(InterceptorRegistry registry) {
//将静态资源排除在拦截之外
registry.addInterceptor(new HandlerInterceptor1()).addPathPatterns("/**");
registry.addInterceptor(new HandlerInterceptor2()).addPathPatterns("/**")
.excludePathPatterns("/index.html","/","/static/**");
}
测试:
http://localhost:8080/static/index.html 不会被拦截
http://localhost:8080/hello2 会被拦截
网友评论