欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

一篇文章带你了解SpringBoot Web开发

程序员文章站 2022-07-06 14:48:02
目录springboot web开发thymeleaf语法mvc配置原理springboot web开发springboot到底帮我们配置了什么?我们能不能修改?能修改那些东西?能不能扩展? x...

springboot web开发

springboot到底帮我们配置了什么?我们能不能修改?能修改那些东西?能不能扩展?

  • xxxautoconfiguration: 向容器中自动配置组件
  • xxxproperties:自动配置类,装配配置文件中自定义的一些内容

要解决的问题:

  • 导入静态资源
  • 首页
  • jsp, 模板引擎 thymeleaf
  • 装配扩展springmvc
  • 增删改查
  • 拦截器
  • 国际化

静态资源

一篇文章带你了解SpringBoot Web开发

总结:

1、在springboot,我们可以使用以下方式处理静态资源

public,static,resources

2、优先级:resources >static(默认) > public

定制首页

首页放在public、resources、template下面都可

thymeleaf模板引擎

一篇文章带你了解SpringBoot Web开发

1、导入依赖

  <!--thymeleaf-->
        <dependency>
            <groupid>org.thymeleaf</groupid>
            <artifactid>thymeleaf-spring5</artifactid>
        </dependency>
        <dependency>
            <groupid>org.thymeleaf.extras</groupid>
            <artifactid>thymeleaf-extras-java8time</artifactid>
        </dependency>

html写在template文件下里面

2、controller书写

package com.kuang.controller;
import org.springframework.stereotype.controller;
import org.springframework.web.bind.annotation.requestmapping;
/*
* 这个跳转需要模板引擎的支持
* 在template目录下的所有页面,只能通过controller来跳转*/
@controller
public class indexcontroller {
    @requestmapping("/test")
    public string test(){
        return "test";
    }
}

源码分析

一篇文章带你了解SpringBoot Web开发

html中获取显示后台controller传来的数据

1、在html中引入标签

xmlns:th="http://www.thymeleaf.org"
<!doctype html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="utf-8">
    <title>title</title>
</head>
<body>
<!--所有的html元素都可以被thymeleaf替换接管   th:元素名-->
<div th:text="${msg}"></div>
</body>
</html>

2、controller

package com.kuang.controller;
import org.springframework.stereotype.controller;
import org.springframework.ui.model;
import org.springframework.web.bind.annotation.requestmapping;
/*
* 这个跳转需要模板引擎的支持
* 在template目录下的所有页面,只能通过controller来跳转*/
@controller
public class indexcontroller {
    @requestmapping("/test")
    public string test(model model){
        model.addattribute("msg","雨势渐大了");
        return "test";
    }
}

thymeleaf语法

一篇文章带你了解SpringBoot Web开发

基本语法:

一篇文章带你了解SpringBoot Web开发

一篇文章带你了解SpringBoot Web开发

遍历一个数据:

1、controller

package com.kuang.controller;
import org.springframework.stereotype.controller;
import org.springframework.ui.model;
import org.springframework.web.bind.annotation.requestmapping;
import java.util.arrays;
/*
* 这个跳转需要模板引擎的支持
* 在template目录下的所有页面,只能通过controller来跳转*/
@controller
public class indexcontroller {
    @requestmapping("/test")
    public string test(model model){
        model.addattribute("msg","雨势渐大了");
        model.addattribute("users", arrays.aslist("下雨了","下大了"));
        return "test";
    }
}

2、html

<!doctype html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="utf-8">
    <title>title</title>
</head>
<body>
<!--遍历数组 ,将后台的users中的每一个元素赋值给user,并以test显示在页面-->
<h3 th:each="user:${users}" th:text="${user}"></h3>
</body>
</html>

mvc配置原理

扩展视图解析器

package com.kuang.config;
import org.springframework.context.annotation.bean;
import org.springframework.context.annotation.configuration;
import org.springframework.web.servlet.view;
import org.springframework.web.servlet.viewresolver;
import org.springframework.web.servlet.config.annotation.webmvcconfigurer;
import java.util.locale;
//如果你想自定义一些定制化的功能,只要写这个组件,然后将它交给springboot,springboot就会自动帮我们配置
@configuration
public class mymvcconfig implements webmvcconfigurer {
    //viewresolver 实现了视图解析器接口的类,我们可以把它看作视图解析器
    @bean
    public viewresolver myviewresolver(){
        return new myviewresolver();
    }
    //自定义一个视图解析器
    public static class myviewresolver implements viewresolver{
        @override
        public view resolveviewname(string s, locale locale) throws exception {
            return null;
        }
    }
}

@enablewebmvc //它就是导入了一个类:delegatingwebmvcconfiguration: 从容器中获取所有的webmvcconfig
注意:
在自定义的mvc配置类中不能加这个注解

总结

本篇文章就到这里了,希望能给你带来帮助,也希望您能够多多关注的更多内容!

相关标签: SpringBoot Web