@Controller
public class PeopleController
{
//访问主页
@RequestMapping({"/","/index.html"})
public String index()
{
return "index";
}
}
//使用WebMvcConfigurerAdapter可以来扩展SpringMvc的功能
@Configuration
public class myConfig extends WebMvcConfigurerAdapter
{
//所有的WebMvcConfigurerAdapter组件都会一起起作用
@Override
public void addViewControllers(ViewControllerRegistry registry)
{
registry.addViewController("/").setViewName("index");
registry.addViewController("/index.html").setViewName("index");
}
}
//使用WebMvcConfigurerAdapter可以来扩展SpringMvc的功能
@Configuration
public class myConfig extends WebMvcConfigurerAdapter
{
//所有的WebMvcConfigurerAdapter组件都会一起起作用
@Bean//将容器注册在容器中
public WebMvcConfigurerAdapter addViewControllers()
{
WebMvcConfigurerAdapter adapter=new WebMvcConfigurerAdapter() {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/").setViewName("index");
registry.addViewController("/index.html").setViewName("index");
}
};
return adapter;
}
}
<link rel="stylesheet" th:href="@{/css/style.css}" href="css/style.css">
修改项目访问路径:
server.servlet.context-path=/dhy
在页面查看源码,看是否帮我们自动增添了项目名访问路径:
每个国际化配置资源文件分别有如下五个属性值,对应要替换页面的五处内容
spring.messages.basename=i18n.login
这样就相当于把国际化资源文件让SpringBoot配置的ResourceBundleMessageSource管理了起来
自定义区域信息解析器:
/*
* 可以携带区域信息
* */
public class MyLocaleResolver implements LocaleResolver
{
@Override
public Locale resolveLocale(HttpServletRequest Request) {
String l=Request.getParameter("l");
Locale locale=Locale.getDefault();//Locale.getDefault()获取当前的语言环境---操作系统的语言环境
if(!StringUtils.isEmpty(l))
{
String[] s = l.split("_");
locale=new Locale(s[0],s[1]);//第一个参数是国家,第二个参数是语言
}
return locale;
}
@Override
public void setLocale(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Locale locale) {
}
}
SpringMVC扩展类: 负责将自定义的组件加入到容器中
//使用WebMvcConfigurerAdapter可以来扩展SpringMvc的功能
@Configuration
public class myConfig extends WebMvcConfigurerAdapter
{
//所有的WebMvcConfigurerAdapter组件都会一起起作用
@Bean//将容器注册在容器中
public WebMvcConfigurerAdapter addViewControllers()
{
WebMvcConfigurerAdapter adapter=new WebMvcConfigurerAdapter() {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/").setViewName("index");
registry.addViewController("/index.html").setViewName("index");
}
};
return adapter;
}
@Bean
//在SpringMVC扩展类中,将刚才写的区域信息解析器放到容器中
public LocaleResolver localeResolver()
{
return new MyLocaleResolver();
}
}
效果展示:
在全局配置文件中禁用掉模板引擎的缓存
#禁用掉模板引擎的缓存,这样页面内容一修改,就可以看到修改后的效果
spring.thymeleaf.cache=false
IDEA在项目运行期间,不会让我们对页面的修改生效,如果想让我们对页面的修改时时生效,第一步禁用缓存,第二步按住ctrl+f9重新编译当前页面
public class LoginHanlderIntercept implements HandlerInterceptor
{
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
Object user=request.getSession().getAttribute("loginUser");
if(user==null)
{
//未登陆,返回登陆页面
request.setAttribute("msg","没有权限请先登陆");
request.getRequestDispatcher("/index.html").forward(request,response);
return false;
}
else
{
//已登陆,放行请求
return true;
}
}
@Override
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
}
@Override
public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
//登陆后,将之前存储在session里面的登录凭证销毁,无论是否存在凭证,都执行销毁操作
request.getSession().removeAttribute("loginUser");
}
}
@Controller
public class LoginController
{
@PostMapping("/user/login")
public String Login(@RequestParam("username")String username,
@RequestParam("password")String password
, Map<String,Object> map, HttpSession session)
{
if(username.equals("大忽悠")&&"123456".equals(password))
{
session.setAttribute("loginUser",username);
//登录成功
return "redirect:/main.html";
}
//登录失败
map.put("msg","用户名或密码错误");
return "index";
}
}
//使用WebMvcConfigurerAdapter可以来扩展SpringMvc的功能
@Configuration
public class myConfig extends WebMvcConfigurerAdapter
{
//所有的WebMvcConfigurerAdapter组件都会一起起作用
@Bean//将容器注册在容器中
public WebMvcConfigurerAdapter addViewControllers()
{
WebMvcConfigurerAdapter adapter=new WebMvcConfigurerAdapter() {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/").setViewName("index");
registry.addViewController("/index.html").setViewName("index");
registry.addViewController("/main.html").setViewName("success");
}
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(new LoginHanlderIntercept()).addPathPatterns("/**")//拦截任意多层路径下的所有请求
.excludePathPatterns("/index.html","/","/user/login");//某些请求不进行拦截
}
};
return adapter;
}
@Bean
//在SpringMVC扩展类中,将刚才写的区域信息解析器放到容器中
public LocaleResolver localeResolver()
{
return new MyLocaleResolver();
}
}
@Override
public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
//登陆后,将之前存储在session里面的登录凭证销毁,无论是否存在凭证,都执行销毁操作
request.getSession().removeAttribute("loginUser");
}
这里模板名就是html页面的名字,即xxx(模板名).html
Thymeleaf 模板布局 th:fragment、th:replace、th:insert、th:remove
package com.czl.controller;
@Controller
public class HelloController {
/**
* forward:转发到一个页面
* /hello.jsp:转发当前项目下的hello;
*
* 一定加上/,如果不加/就是相对路径。容易出问题;
* forward:/hello.jsp
* forward:前缀的转发,不会由我们配置的视图解析器拼串
*
* @return
*/
@RequestMapping("handle01")
public String handle01(){
System.out.println("handle01...");
return "forward:/hello.jsp";
}
@RequestMapping("handle02")
public String handle02(){
System.out.println("handle02....");
return "forward:/handle01";
}
/**
* 重定向到hello.jsp页面
* 有前缀的转发和重定向操作,配置的视图解析器就不会进行拼串;
*
* 转发 forward:转发的路径
* 重定向 redirect:重定向的路径
* /hello.jsp:代表就是从当前项目下开始;在SpringMVC中会为路径自动的拼接上项目名
*
*
* 原生的Servlet重定向/路径需要加上项目名才能成功,
* 重定向的url路径是要发给浏览器让浏览器按照该url访问服务器的,而浏
* 览器解析/ 只到站点,如 localhost:8080/,使用response.sendRedirect("/hello.jsp"),浏览器只会解析为:
* localhost:8080/hello.jsp
*
* response.sendRedirect("/hello.jsp")//访问不到,要加上项目名 /SpringMVC_viewResolver_06/hello.jsp
* @returnrd.include(requestToExpose, response);
*/
@RequestMapping("handle03")
public String handle03(){
System.out.println("handle03...");
return "redirect:/hello.jsp";
}
@RequestMapping("handle04")
public String handle04(){
System.out.println("handle04...");
return "redirect:/handle03";
}
}
默认有一个日期格式化器:
默认使用的日期格式是/方式,如果后台接收到前台的日期格式不是\,那么就会报错:
我们可以在配置文件中进行日期格式修改,替换默认的日期格式:
spring.mvc.date-format=yyyy-MM-dd
${#dates.format(key)}
${#dates.format(key, 'yyyy-MM-dd HH:mm:ss')}
格式化传递过来的 Date 对象,如果没有指定时间格式,将使用浏览器当前使用的时间格式