当前位置:   article > 正文

SpringBoot学习笔记(上)-狂神说_springboot 狂神说

springboot 狂神说

目录

一、Springboot简介

二、分析SpringBoot源码

三、YAML

四、自动装配再理解

五、WEB开发

六、Thymeleaf模版引擎

七、WebMVC自动配置原理

八、MVC的员工管理系统


Gitee地址:狂神-SpringBoot: 学习狂神的课程时,写的练习项目 - Gitee.com

一、Springboot简介

1、什么是Springboot

Spring是一个开源框架,2003 年兴起的一个轻量级的Java 开发框架,SpringBoot是对他的加强

 Spring Boot的主要优点:

  • 为所有Spring开发者更快的入门
  • 开箱即用,提供各种默认配置来简化项目配置
  • 内嵌式容器简化Web项目
  • 没有冗余代码生成和XML配置的要求
  • 简化配置:Springboot是对Spring的进一步封装,基于注解开发,舍弃了笨重的xml配置,使用yml或者properties配置
  • 产品级独立运行:每一个工程都可以打包成一个jar包,内置了Tomcat和Servlet容器,可以独立运行
  • 强大的场景启动器:每一个特定场景下的需求都封装成了一个starter,只要导入了这个starter就有了这个场景所有的一切

2、微服务学习路线

3、第一个SpringBoot程序 

开发环境

  • JDK-1.8
  • Maven-3.6.3
  • Springboot-2.2.13.RELEASE

Spring官方提供了非常方便的工具让我们快速构建应用

构建方式一:Spring Initializr:https://start.spring.io/

填写项目信息

构建方式二:打开https://start.spring.io/网站,构建maven项目

点击Generate,会下载构建好的项目工程

解压缩打开,自动下载jar包

好了,项目这时就可以启动了!

 项目结构分析:

1、程序的主启动类Application.java

2、一个 application.properties 配置文件

3、一个 测试类

4、一个 pom.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  5. https://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-parent</artifactId>
  10. <version>2.2.13.RELEASE</version>
  11. <relativePath/> <!-- lookup parent from repository -->
  12. </parent>
  13. <groupId>com.kuang</groupId>
  14. <artifactId>HelloWorld</artifactId>
  15. <version>0.0.1-SNAPSHOT</version>
  16. <name>HelloWorld</name>
  17. <description>Demo project for Spring Boot</description>
  18. <properties>
  19. <java.version>1.8</java.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-test</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-maven-plugin</artifactId>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>

编写一个HelloController后,运行主启动类

访问8080端口

简单几步,就完成了一个web接口的开发,SpringBoot就是这么简单。

所以我们常用它来建立我们的微服务项目!

简单的3步,就可以打包项目

  1. <!-- 第一种方法 -->
  2. <plugin>
  3. <groupId>org.apache.maven.plugins</groupId>
  4. <artifactId>maven-resources-plugin</artifactId>
  5. <version>3.1.0</version>
  6. </plugin>
  7. <!-- 第二种方法 -->
  8. <!--
  9. 在工作中,很多情况下我们打包是不想执行测试用例的
  10. 可能是测试用例不完事,或是测试用例会影响数据库数据
  11. 跳过测试用例执
  12. -->
  13. <plugin>
  14. <groupId>org.apache.maven.plugins</groupId>
  15. <artifactId>maven-surefire-plugin</artifactId>
  16. <configuration>
  17. <!--跳过项目运行测试用例-->
  18. <skipTests>true</skipTests>
  19. </configuration>
  20. </plugin>

图案可以到:https://www.bootschool.net/ascii 这个网站生成,然后拷贝到文件中即可!

二、分析SpringBoot源码

1、pom.xml父工程

父工程师官网默认设置好了的资源和依赖,已有的,我们配置时就不用写版本号

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>2.2.13.RELEASE</version>
  5. <relativePath/> <!-- lookup parent from repository -->
  6. </parent>

点spring-boot-starter-parent进去看父工程,就会看到官方配置好的依赖和资源版本号

  • 配置好了资源文件的格式

  • 自动装配的文件的名称和类

  • 再点击父工程的父工程,会看到爷爷工程配置好了各种jar包,及他们的关联版本

2、starter启动器

SpringBoot将所有的功能场景都抽取出来,做成一个个的starter (启动器),只需要在项目中引入这些starter即可,所有相关的依赖都会导入进来 , 我们要用什么功能就导入什么样的场景启动器即可 ;我们未来也可以自己自定义 starter;

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-web</artifactId>
  4. </dependency>

3、Application主启动类

  1. //@SpringBootApplication : 标注这个类是一个Springboot的应用
  2. @SpringBootApplication
  3. public class Springboot01HellowordApplication {
  4. //将Springboot的应用启动
  5. public static void main(String[] args) {
  6. SpringApplication.run(Springboot01HellowordApplication.class, args);
  7. }
  8. }

① 分析SpringBootApplication源码

点击注解进入源码,开始一层层的分析

  1. // 主启动类的注解,一个tab表示点进去一次
  2. @SpringBootApplication
  3. @SpringBootConfiguration// 表明是一个SpringBoot配置文件
  4. @Configuration// 再次说明这是一个Spring配置
  5. @EnableAutoConfiguration // 自动配置
  6. @AutoConfigurationPackage
  7. @Import(AutoConfigurationPackages.Registrar.class)
  8. @Import(AutoConfigurationImportSelector.class)
  9. @ComponentScan(excludeFilters = { @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
  10. @Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })

@EnableAutoConfiguration

  • @AutoConfigurationPackage
    • @AutoConfigurationPackages.Registrar.class:
      • Registrar.class作用就是将主启动所在的包及以下的所有子包都扫描进spring容器中
  • @Import(AutoConfigurationImportSelector.class) ,找到getCandidateConfigurations方法
    • getCandidateConfigurations方法:获得候选的配置
  1. protected List<String> getCandidateConfigurations(AnnotationMetadata metadata, AnnotationAttributes attributes) {
  2. List<String> configurations = SpringFactoriesLoader.loadFactoryNames(getSpringFactoriesLoaderFactoryClass(),
  3. getBeanClassLoader());
  4. Assert.notEmpty(configurations, "No auto configuration classes found in META-INF/spring.factories. If you "
  5. + "are using a custom packaging, make sure that file is correct.");
  6. return configurations;
  7. }
  • 找到SpringFactoriesLoader.loadFactoryNames,点进去,找到loadSpringFactories方法
    • SpringFactoriesLoader类中的预定义的自动装配路径 FACTORIES_RESOURCE_LOCATION = "META-INF/spring.factories";
  1. public static final String FACTORIES_RESOURCE_LOCATION = "META-INF/spring.factories";
  2. public static List<String> loadFactoryNames(Class<?> factoryType, @Nullable ClassLoader classLoader) {
  3. String factoryTypeName = factoryType.getName();
  4. return loadSpringFactories(classLoader).getOrDefault(factoryTypeName, Collections.emptyList());
  5. }
  6. private static Map<String, List<String>> loadSpringFactories(@Nullable ClassLoader classLoader) {
  7. //获得classLoader
  8. MultiValueMap<String, String> result = cache.get(classLoader);
  9. if (result != null) {
  10. return result;
  11. }
  12. ...
  13. }
  • 多次出现的spring.factories,就是预定好的加载配置文件

大功告成!

@ComponentScan

  • 自动扫描并加载符合条件的组件bean,并将这个组件bean注入到IOC容器中
  1. @ComponentScan(excludeFilters = { @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
  2. @Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })

② 自动装配

  • 自动配置真正实现是从classpath中搜寻所有的META-INF/spring.factories配置文件 ,并将其中对应的org.springframework.boot.autoconfigure.包下的配置项,通过反射实例化为对应标注了 @Configuration的JavaConfig形式的IOC容器配置类 , 然后将这些都汇总成为一个实例并加载到IOC容器中。
  • 用户如何书写yml配置,需要去查看META-INF/spring.factories下的某自动配置,如HttpEncodingAutoConfiguration
    • EnableConfigrutionProperties(xxx.class):表明这是一个自动配置类,加载某些配置
    • XXXProperties.class:封装配置文件中的属性,yam中需要填入= 它指定的前缀+方法

③ 工作原理总结

  1. 读取spring.properties文件
    1. SpringBoot在启动的时候从spring-boot-autoConfigure.jar包下的的META-INF/spring.factories中获取EnableAutoConfiguration属性的值加载自动配置类
    2. 将这些值作为自动配置类导入容器 , 自动配置类就生效 , 帮我们进行自动配置工作;
  2. 加载XXXProperties
    1. 根据自动配置类中指定的xxxxProperties类设置自动配置的属性值,开发者可以根据该类在yml配置文件中修改自动配置
  3. 根据@ConditionalXXX注解决定加载哪些组件
    1. Springboot通过该注解指定组件加入IOC容器时锁需要具备的特定条件。这个组件会在满足条件时候加入到IOC容器内

④ run方法

我最初以为就是运行了一个main方法,没想到却开启了一个服务;

  1. //@SpringBootApplication : 标注这个类是一个springboot的应用,启动类下的所有资源被导入
  2. @SpringBootApplication
  3. public class Springboot01HelloworldApplication {
  4. public static void main(String[] args) {
  5. //将springboot应用启动
  6. //SpringAplication类
  7. //run 方法
  8. SpringApplication.run(Springboot01HelloworldApplication.class, args);
  9. }
  10. }

分析该方法主要分两部分,一部分是SpringApplication的实例化,二是run方法的执行;

SpringApplication这个类主要做了以下四件事情:

  1. 推断应用的类型是普通的项目还是Web项目
  2. 查找并加载所有可用初始化器 , 设置到initializers属性中
  3. 找出所有的应用程序监听器,设置到listeners属性中
  4. 推断并设置main方法的定义类,找到运行的主类

三、YAML

0、SpringBoot的配置文件的种类

SpringBoot中的配置文件详解(yml、properties全局配置和自定义配置)

SpringBoot使用一个全局的配置文件 , 配置文件名称是固定的

  • application.properties

    • 语法结构 :key=value

  • application.yml

    • 语法结构 :key:空格 value

自定义配置在第7章

1、yaml概述

 其让人最容易上手的特色是巧妙避开各种封闭符号,如:引号、各种括号等,这些符号在嵌套结构时会变得复杂而难以辨认

传统xml配置:

  1. <server>
  2. <port>8081<port>
  3. </server>

yaml配置:

  1. server:
  2. prot: 8080

2、yml基础语法

说明:语法要求严格!

  1. 空格不能省略,键值对中间必须要有一个空格
  2. 以缩进来控制层级关系,只要是左边对齐的一列数据都是同一个层级的。
  3. 属性和值的大小写都是十分敏感的。

3、yml基本类型写入

字面值:普通字符换、数值、布尔类型,直接写成k:v,字符串默认不用加‘’或“”

注意:

  • “ ” 双引号,不会转义字符串里面的特殊字符 , 特殊字符会作为本身想表示的意思;

        比如 :name: “kuang \n shen” 输出 :kuang 换行 shen

  • ‘’ 单引号,会转义特殊字符 , 特殊字符最终会变成和普通字符一样输出

        比如 :name: ‘kuang \n shen’ 输出 :kuang \n shen

对象、Map:属性值必须和Bean中的对应一致

  1. Student:
  2. name: zhangsan
  3. age: nan
  4. #行内写法
  5. student: {name: qinjiang,age: 3}

数组:使用 - 表示一个元素

  1. Countries:
  2. - Chine
  3. - USA
  4. #行内写法
  5. pets: [cat,dog,pig]

4、注入配置文件

yaml文件更强大的地方在于,他可以给我们的实体类直接注入匹配值!

原本给bean注入属性值的方法

编写一个实体类User,添加@Component,再在字段上加@Value赋值

  1. @Data
  2. @Component
  3. public class User {
  4. @Value("小狂狂")
  5. private String name;
  6. private int age;
  7. }

在测试类引入User,编写测试方法

  1. @SpringBootTest
  2. class HelloWorldApplicationTests {
  3. @Autowired
  4. User user;
  5. @Test
  6. void value() {
  7. System.out.println(user.toString());
  8. }
  9. }

启动项目测试,打印User的值

通过配置文件给bean注入属性的方法

导入依赖

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-configuration-processor</artifactId>
  4. <optional>true</optional>
  5. </dependency>

添加注解,@ConfigurationProperties(prefix = “person”)默认是从全局配置获取,文件名只能是application.yml

  1. @Data
  2. @Component
  3. @ConfigurationProperties(prefix = "person")
  4. public class User {
  5. @Value("小狂狂")
  6. private String name;
  7. private int age;
  8. }

application.yml

  1. #对象
  2. person:
  3. name: wang
  4. age: 3

启动项目测试,打印User的值

5、加载指定的配置文件

  • @PropertySource :加载指定的配置文件;
  • @configurationProperties:默认从全局配置文件中获取值;

我们去在resources目录下新建一个person.properties文件

  1. name=person1
  2. age=5

然后在我们的代码中指定加载person.properties文件

  1. @Data
  2. @Component
  3. //@ConfigurationProperties(prefix = "person")
  4. @PropertySource(value = "classpath:person.properties")
  5. public class User {
  6. // SPEL表达式取出配置文件内的值
  7. @Value("${name}")
  8. private String name;
  9. @Value("${age}")
  10. private int age;
  11. }

再次输出测试一下:指定配置文件绑定成功!

6、配置文件占位符

修改上面的person.properties文件内容

  1. # 配置文件占位符:随机uuid
  2. name=person1${random.uuid}
  3. age=5

启动项目测试

7、@configurationProperties和@Value对比

1、@ConfigurationProperties只需要写一次即可 , @Value则需要每个字段都添加

2、松散绑定:这个什么意思呢? 比如我的yml中写的last-name,这个和lastName是一样的, - 后面跟着的字母默认是大写的。这就是松散绑定。可以测试一下

3、JSR303数据校验 , 这个就是我们可以在字段是增加一层过滤器验证 , 可以保证数据的合法性

4、复杂类型封装,yml中可以封装对象 , 使用value就不支持

结论:

  • 配置yml和配置properties都可以获取到值 , 强烈推荐 yml;
  • 如果我们在某个业务中,只需要获取配置文件中的某个值,可以使用一下 @value;
  • 如果说,我们专门编写了一个JavaBean来和配置文件进行一一映射,就直接@configurationProperties,不要犹豫!

8、JSR303

就是一种数据校验格式,在类上绑定@Validated,在属性上使用指定的参数如@Email(message="邮箱格式错误")

9、多配置文件

我们在主配置文件编写的时候,文件名可以是 application-{profile}.properties/yml , 用来指定多个环境版本;

例如:

  • application-test.properties 代表测试环境配置
  • application-dev.properties 代表开发环境配置

但是Springboot并不会直接启动这些配置文件,它默认使用application.properties主配置文件

我们需要通过一个配置来选择需要激活的环境:

  1. #比如在配置文件中指定使用dev环境,我们可以通过设置不同的端口号进行测试;
  2. #我们启动SpringBoot,就可以看到已经切换到dev下的配置了;
  3. spring.profiles.active=dev

10、配置文件的加载位置

springboot 启动会扫描以下位置的application.properties或者application.yml文件作为Spring boot的默认配置文件:

  • 优先级1:项目路径下的config文件夹配置文件
  • 优先级2:项目路径下配置文件
  • 优先级3:资源路径下的config文件夹配置文件
  • 优先级4:资源路径下配置文件

在本地配置4个不同位置的application.yml,启动项目测试 

11、yaml的多文档块

来分割多个yml配置,并且用profiles来命名

        一个yml文件可以使用active来区分配置,比properties强大之一

  1. server:
  2. port: 8081
  3. #选择要激活那个环境块
  4. spring:
  5. profiles:
  6. active: prod
  7. ---
  8. server:
  9. port: 8083
  10. spring:
  11. profiles: dev #配置环境的名称
  12. ---
  13. server:
  14. port: 8084
  15. spring:
  16. profiles: prod #配置环境的名称

四、自动装配再理解

1、通过源码分析自动配置原理

我们以HttpEncodingAutoConfiguration(Http编码自动配置)为例解释自动配置原理;

  1. //表示这是一个配置类,和以前编写的配置文件一样,也可以给容器中添加组件;
  2. @Configuration
  3. //启动指定类的ConfigurationProperties功能;
  4. //进入这个HttpProperties查看,将配置文件中对应的值和HttpProperties绑定起来;
  5. //并把HttpProperties加入到ioc容器中
  6. @EnableConfigurationProperties({HttpProperties.class})
  7. //Spring底层@Conditional注解
  8. // 根据不同的条件判断,如果满足指定的条件,整个配置类里面的配置就会生效;
  9. //这里的意思就是判断当前应用是否是web应用,如果是,当前配置类生效
  10. @ConditionalOnWebApplication(type = Type.SERVLET)
  11. //判断当前项目有没有这个类CharacterEncodingFilter;SpringMVC中进行乱码解决的过滤器;
  12. @ConditionalOnClass({CharacterEncodingFilter.class})
  13. //判断配置文件中是否存在某个配置:spring.http.encoding.enabled;
  14. //如果不存在,判断也是成立的
  15. //即使我们配置文件中不配置pring.http.encoding.enabled=true,也是默认生效的;
  16. @ConditionalOnProperty(prefix = "spring.http.encoding", value = {"enabled"}, matchIfMissing = true)
  17. public class HttpEncodingAutoConfiguration {
  18. //他已经和SpringBoot的配置文件映射了
  19. private final Encoding properties;
  20. //只有一个有参构造器的情况下,参数的值就会从容器中拿
  21. public HttpEncodingAutoConfiguration(HttpProperties properties) {
  22. this.properties = properties.getEncoding();
  23. }
  24. //给容器中添加一个组件,这个组件的某些值需要从properties中获取
  25. @Bean
  26. //判断容器没有这个组件?
  27. @ConditionalOnMissingBean
  28. public CharacterEncodingFilter characterEncodingFilter() {
  29. CharacterEncodingFilter filter = new OrderedCharacterEncodingFilter();
  30. filter.setEncoding(this.properties.getCharset().name());
  31. filter.setForceRequestEncoding(this.properties.shouldForce(org.springframework.boot.autoconfigure.http.HttpProperties.Encoding.Type.REQUEST));
  32. filter.setForceResponseEncoding(this.properties.shouldForce(org.springframework.boot.autoconfigure.http.HttpProperties.Encoding.Type.RESPONSE));
  33. return filter;
  34. }
  35. }

一句话总结 :根据当前不同的条件判断,决定这个配置类是否生效!

  • 一但这个配置类生效;这个配置类就会给容器中添加各种组件;
  • 这些组件的属性是从对应的properties类中获取的,这些类里面的每一个属性又是和配置文件绑定的;
  • 所有在配置文件中能配置的属性都是在xxxxProperties类中封装着;
  • 配置文件能配置什么就可以参照某个功能对应的这个属性类

2、自动装配流程

1、SpringBoot启动会加载大量的自动配置类

2、我们看我们需要的功能有没有在SpringBoot默认写好的自动配置类当中;

3、我们再来看这个自动配置类中到底配置了哪些组件;(只要我们要用的组件存在在其中,我们就不需要再手动配置了)

4、给容器中自动配置类添加组件的时候,会从properties类中获取某些属性。我们只需要在配置文件中指定这些属性的值即可;

xxxxAutoConfigurartion:自动配置类;给容器中添加组件

xxxxProperties:封装配置文件中相关属性;

3、@Conditional

了解完自动装配的原理后,我们来关注一个细节问题,自动配置类必须在一定的条件下才能生效

它是Spring原生的@Conditional的派生注解

作用:必须是@Conditional指定的条件成立,才给容器中添加组件,配置配里面的所有内容才生效;

我们怎么知道哪些自动配置类生效?

我们可以通过启用 debug=true属性;来让控制台打印自动配置报告,这样我们就可以很方便的知道哪些自动配置类生效;

debug: true

Positive matches:(自动配置类启用的:正匹配)

Negative matches:(没有启动,没有匹配成功的自动配置类:负匹配)

Unconditional classes: (没有条件的类)

五、WEB开发

1、SpringBoot自带的静态资源Webjars

Webjars本质就是以jar包的方式引入我们的静态资源 , 我们以前要导入一个静态资源文件,直接导入即可。

要使用jQuery,我们只要要引入jQuery对应版本的pom依赖即可!

访问:只要是静态资源,SpringBoot就会去对应的路径寻找资源,我们这里访问:http://localhost:8080/webjars/jquery/3.4.1/jquery.js

2、第二种静态资源映射规则

那我们项目中要是使用自己的静态资源该怎么导入呢?

idea按两下shift,搜索WebAutoConfiguration - WebMvcAutoConfigurationAdapter - addResourceHandlers

  1. @Override
  2. public void addResourceHandlers(ResourceHandlerRegistry registry) {
  3. if (!this.resourceProperties.isAddMappings()) {
  4. logger.debug("Default resource handling disabled");
  5. return;
  6. }
  7. Duration cachePeriod = this.resourceProperties.getCache().getPeriod();
  8. CacheControl cacheControl = this.resourceProperties.getCache().getCachecontrol().toHttpCacheControl();
  9. // 第一种方式 webjars
  10. if (!registry.hasMappingForPattern("/webjars/**")) {
  11. customizeResourceHandlerRegistration(registry.addResourceHandler("/webjars/**")
  12. .addResourceLocations("classpath:/META-INF/resources/webjars/")
  13. .setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl));
  14. }
  15. // 第二种方式
  16. String staticPathPattern = this.mvcProperties.getStaticPathPattern();
  17. if (!registry.hasMappingForPattern(staticPathPattern)) {
  18. customizeResourceHandlerRegistration(registry.addResourceHandler(staticPathPattern)
  19. .addResourceLocations(getResourceLocations(this.resourceProperties.getStaticLocations()))
  20. .setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl));
  21. }
  22. }

ResourceProperties 可以设置和我们静态资源有关的参数;这里面指向了它会去寻找资源的文件夹,即staticLocation数组的内容。

所以得出结论,以下四个目录存放的静态资源可以被我们识别:

  • classpath:/META-INF/resources/
  • classpath:/resources/
  • classpath:/static/(默认创建)
  • classpath:/public/

优先级从上到下依次降低

3、自定义静态资源路径

我们也可以自己通过配置文件来指定一下,哪些文件夹是需要我们放静态资源文件的,在application.yml中配置;

  1. spring:
  2. # 自定义资源文件的位置
  3. resources:
  4. static-locations: classpath:/coding/,classpath:/kuang/

一旦自己定义了静态文件夹的路径,原来的自动配置就都会失效了!

4、首页

静态资源文件夹说完后,我们继续向下看源码!可以看到一个欢迎页的映射,就是我们的首页!

欢迎页,静态资源文件夹下的所有 index.html 页面;被 /** 映射。

比如我访问 http://localhost:8080/ ,就会找静态资源文件夹下的 index.html

新建一个 index.html ,在我们上面的3个目录中任意一个;然后访问测试 http://localhost:8080/ 看结果!

5、首页favicon图标配置

与其他静态资源一样,Spring Boot在配置的静态内容位置中查找 favicon.ico。如果存在这样的文件,它将自动用作应用程序的favicon。

关闭SpringBoot默认图标

  1. spring:
  2. # 关闭默认图标
  3. mvc:
  4. favicon:
  5. enabled: false

自己放一个图标在静态资源目录下,我放在 public 目录下

清除浏览器缓存!刷新网页,发现图标已经变成自己的了!

六、Thymeleaf模版引擎

1、什么是模版引擎

其实jsp就是一个模板引擎,还有用的比较多的freemarker,包括SpringBoot给我们推荐的Thymeleaf,模板引擎有非常多,但再多的模板引擎,他们的思想都是一样的,什么样一个思想呢我们来看一下这张图:

模板引擎的作用就是我们来写一个页面模板,比如有些值呢,是动态的,我们写一些表达式。而这些值,从哪来呢,就是我们在后台封装一些数据。然后把这个模板和这个数据交给我们模板引擎,模板引擎按照我们这个数据帮你把这表达式解析、填充到我们指定的位置,然后把这个数据最终生成一个我们想要的内容给我们写出去,这就是我们这个模板引擎,不管是jsp还是其他模板引擎,都是这个思想。

通过查看源码,可知默认放在resources/templates包中,后缀为.html

这样就会被springboot自动识别了

2、Thymeleaf 语法学习

引入依赖

  1. <!--thymeleaf-->
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  5. </dependency>

我们要使用thymeleaf,需要在html文件中导入命名空间的约束,方便提示。

xmlns:th="http://www.thymeleaf.org"

thymeLeafController.java

  1. @Controller
  2. public class ThymeLeafController {
  3. @RequestMapping("/thymeleaf")
  4. public String thy(Model model) {
  5. model.addAttribute("msg", "<p>hello Thymeleaf</p>");
  6. model.addAttribute("users", Arrays.asList("张三", "李四", "王五"));
  7. // 后缀默认是 .html
  8. return "/thymeLeafTest";
  9. }
  10. }

thymeLeafTest.html

  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <!--所有的html元素都可以被Th接管:th:xx元素名-->
  9. <!--test=默认是转义文本-->
  10. <h1 th:text="${msg}"></h1>
  11. <!--utest=默认是不转义文本-->
  12. <h1 th:utext="${msg}"></h1>
  13. <h1>
  14. <!--遍历往前写item-->
  15. 遍历一 推荐这么使用:
  16. <h2 th:each="user:${users}" th:text="${user}"></h2><br>
  17. 遍历二:
  18. <h2 th:each="user:${users}">[[${user}]]</h2>
  19. </h1>
  20. </body>
  21. </html>

启动项目测试

手册网址:https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.pdf

七、WebMVC自动配置原理

承接yml的上文,除了全局配置文件,我们还可以自己编写config配置类,加上@Configuration注解来让springBoot识别,覆盖掉默认的配置文件。

MyMvcConfig.java

  1. // 如果想写一些定制化的功能,只要写这个组件,然后将他交给springBoot就会自动装配
  2. // 因为类型要求为WebMvcConfigurer,所以我们实现其接口
  3. // 可以使用自定义类扩展MVC的功能
  4. @Configuration
  5. public class MyMvcConfig implements WebMvcConfigurer {
  6. }

在application.properties文件中配置springmvc

点击源码,跳转进WebMvcProperties.java 文件

再定位到源码包中,找到WebMvcAutoConfiguration.java自动装配文件

通过@Conditional获知配置文件识别的条件,然后在自己的配置类中实现WebMvcConfigurer接口,并重写其中的addViewControllers()方法

  1. package com.kuang.config;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.web.servlet.View;
  5. import org.springframework.web.servlet.ViewResolver;
  6. import org.springframework.web.servlet.config.annotation.EnableWebMvc;
  7. import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
  8. import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
  9. import java.util.Locale;
  10. // 如果想写一些定制化的功能,只要写这个组件,然后将他交给springBoot就会自动装配
  11. // 因为类型要求为WebMvcConfigurer,所以我们实现其接口
  12. // 可以使用自定义类扩展MVC的功能
  13. @Configuration
  14. // 这个注解就是导入了一个类@Import(DelegatingWebMvcConfiguration.class),里面实现了WebMvcConfigurer,写了一些功能
  15. // 会使我们自定义的配置类失效,@ConditionalOnClass()
  16. @EnableWebMvc
  17. public class MyMvcConfig implements WebMvcConfigurer {
  18. // 将视图解析器交给SpringMVC
  19. @Bean
  20. public ViewResolver myViewResolver() {
  21. return new MyViewResolver();
  22. }
  23. // 自定义了一个自己的视图解析器
  24. public static class MyViewResolver implements ViewResolver {
  25. @Override
  26. public View resolveViewName(String viewName, Locale locale) throws Exception {
  27. System.out.println("这是我配置的视图解析器~~~~~~~~~");
  28. return null;
  29. }
  30. }
  31. @Override
  32. public void addViewControllers(ViewControllerRegistry registry) {
  33. // 浏览器发送/test , 就会跳转到test页面;
  34. registry.addViewController("/test").setViewName("test");
  35. }
  36. }

启动项目测试, 可以看到我们配置的MyViewResolver注册进spring了

八、MVC的员工管理系统

        第1节后接第5节CRUD,之后可以穿插着看

1、创建工程,伪造数据库表

做完以后总的项目结构

 new project

 等待依赖下载完成,创建包结构,实体类,dao层

  1. @Data
  2. @AllArgsConstructor
  3. @NoArgsConstructor
  4. public class Department implements Serializable {
  5. private Integer id;
  6. private String departmentName;
  7. }

Employee类

  1. @Data
  2. @AllArgsConstructor
  3. @NoArgsConstructor
  4. public class Employee implements Serializable {
  5. private Integer id;
  6. private String lastName;
  7. private String email;
  8. private Integer gender;
  9. private Department department;
  10. private Date birth;
  11. }

DepartmentDao

  1. @Repository
  2. public class DepartmentDao {
  3. // 模拟数据库中的数据,无需创建数据库
  4. private static Map<Integer, Department> departments = null;
  5. static {
  6. departments = new HashMap<>();
  7. departments.put(101, new Department(101, "教学部"));
  8. departments.put(102, new Department(102, "市场部"));
  9. departments.put(103, new Department(103, "教研部"));
  10. departments.put(104, new Department(104, "运营部"));
  11. departments.put(105, new Department(105, "后勤部"));
  12. }
  13. //获得所有部门的信息
  14. public Collection<Department> getDepartments() {
  15. return departments.values();
  16. }
  17. // 通过id获取部门
  18. public Department getDepartmentById(Integer id) {
  19. return departments.get(id);
  20. }
  21. }

EmployeeDao

  1. @Repository
  2. public class EmployeeDao {
  3. @Autowired
  4. private DepartmentDao departmentDao;
  5. // 模拟数据库中的数据,无需创建数据库
  6. private static Map<Integer, Employee> employees = null;
  7. static {
  8. employees = new HashMap<>();
  9. employees.put(1001, new Employee(1001, "AA", "123456@qq.com", 0, new Department(101, "教学部"), new Date()));
  10. employees.put(1002, new Employee(1002, "BB", "123456@qq.com", 1, new Department(102, "市场部"), new Date()));
  11. employees.put(1003, new Employee(1003, "CC", "123456@qq.com", 0, new Department(103, "教研部"), new Date()));
  12. employees.put(1004, new Employee(1004, "DD", "123456@qq.com", 1, new Department(104, "运营部"), new Date()));
  13. employees.put(1005, new Employee(1005, "EE", "123456@qq.com", 1, new Department(105, "后勤部"), new Date()));
  14. }
  15. // 主键自增
  16. private static Integer initId = 1006;
  17. // 增加一个员工
  18. public void saveEmp(Employee employee) {
  19. if (employee.getId() == null) {
  20. employee.setId(initId++);
  21. }
  22. employee.setDepartment(departmentDao.getDepartmentById(employee.getDepartment().getId()));
  23. employees.put(employee.getId(), employee);
  24. }
  25. // 删除员工
  26. public void deleteEmployeeById(Integer id) {
  27. employees.remove(id);
  28. }
  29. // 查询全部员工信息
  30. public Collection<Employee> getAllEmp() {
  31. return employees.values();
  32. }
  33. // 通过id查询员工
  34. public Employee getEmployeeById(Integer id) {
  35. return employees.get(id);
  36. }
  37. }

2、创建首页

导入ThemeLeaf依赖

  1. <!--thymeleaf启动器-->
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  5. </dependency>

将第5节从BootStrap模板复制过来的sign-in.html改名为,首页index.html

  1. <!doctype html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <meta name="description" content="">
  7. <meta name="author" content="">
  8. <link rel="icon" href="../../../../favicon.ico">
  9. <title>Signin Template for Bootstrap</title>
  10. <!-- Bootstrap core CSS -->
  11. <link href="../../../../dist/css/bootstrap.min.css" rel="stylesheet">
  12. <!-- Custom styles for this template -->
  13. <link href="signin.css" rel="stylesheet">
  14. </head>
  15. <body class="text-center">
  16. <form class="form-signin" action="/user/login" type="post">
  17. <img class="mb-4" th:src="@{/assets/img/bootstrap-solid.svg}" alt="" width="72" height="72">
  18. <!--配置登录失败信息-->
  19. <P style="color: red" th:text="${msg}" th:if="${not #strings.isEmpty(msg)}"></P>
  20. <h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
  21. <label for="inputEmail" class="sr-only">Email address</label>
  22. <input type="email" name="email" id="inputEmail" class="form-control" placeholder="Email address" required
  23. autofocus>
  24. <label for="inputPassword" class="sr-only">Password</label>
  25. <input type="password" name="password" id="inputPassword" class="form-control" placeholder="Password" required>
  26. <div class="checkbox mb-3">
  27. <label>
  28. <input type="checkbox" value="remember-me"> Remember me
  29. </label>
  30. </div>
  31. <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
  32. <p class="mt-5 mb-3 text-muted">&copy; 2017-2018</p>
  33. </form>
  34. </body>
  35. </html>

导入ThemeLeaf约束

<html lang="en" xmlns:th="http://www.thymeleaf.org">

建议使用扩展MVC配置的首页访问方式,直接启动项目输入localhost:8080即可访问

  1. @Configuration
  2. public class MyConfig implements WebMvcConfigurer {
  3. @Override
  4. public void addViewControllers(ViewControllerRegistry registry) {
  5. // 访问首页,建议使用扩展MVC
  6. registry.addViewController("/").setViewName("index");
  7. registry.addViewController("/index").setViewName("index");
  8. registry.addViewController("/index.html").setViewName("index");
  9. }
  10. //登录拦截器
  11. @Override
  12. public void addInterceptors(InterceptorRegistry registry) {
  13. // 配置自定义拦截器
  14. registry.addInterceptor(new LoginHandlerInterceptor())
  15. .addPathPatterns("/**")
  16. .excludePathPatterns("/index", "/", "/user/login",
  17. "/assets/**", "/dist/**", "/css/**", "/img/**", "/js/**");
  18. }
  19. }

3、登陆拦截器

创建LoginHandlerInterceptor,这里假设获取session中的username,如果存在就表示登录成功;不存在就表示登录失败,request中存失败msg

  1. public class LoginHandlerInterceptor implements HandlerInterceptor {
  2. /*
  3. 登录拦截器
  4. */
  5. @Override
  6. public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
  7. // 获取用户名称,登录成功之后,应该有用户的session
  8. Object inputEmail = request.getSession().getAttribute("email");
  9. // 登录失败返会登录页
  10. if (inputEmail == null) {
  11. request.setAttribute("msg", "没有权限,请重新登录");
  12. request.getRequestDispatcher("/").forward(request, response);
  13. return false;
  14. } else {
  15. return true;
  16. }
  17. }
  18. }

MyConfig中配置拦截器

  1. @Configuration
  2. public class MyConfig implements WebMvcConfigurer {
  3. @Override
  4. public void addViewControllers(ViewControllerRegistry registry) {
  5. // 访问首页,建议使用扩展MVC
  6. registry.addViewController("/").setViewName("index");
  7. registry.addViewController("/index").setViewName("index");
  8. registry.addViewController("/index.html").setViewName("index");
  9. }
  10. //登录拦截器
  11. @Override
  12. public void addInterceptors(InterceptorRegistry registry) {
  13. // 配置自定义拦截器
  14. registry.addInterceptor(new LoginHandlerInterceptor())
  15. .addPathPatterns("/**")
  16. .excludePathPatterns("/index", "/", "/user/login",
  17. "/assets/**", "/dist/**", "/css/**", "/img/**", "/js/**");
  18. }
  19. }

4、国际化

resource下新建i18n文件夹,新建中英文的properties文件

 index.html前端页面使用th:text="#{login.btn}"等接收配置文件里的参数

        参考上面的,我没写

自定义一个MyLocalResolver继承LocalResolver

  1. public class MyLocalResolver implements LocaleResolver {
  2. //解析国际化请求
  3. @Override
  4. public Locale resolveLocale(HttpServletRequest request) {
  5. String language = request.getParameter("language");
  6. System.out.println("语言:" + language);
  7. Locale locale = Locale.getDefault();
  8. if (!Strings.isEmpty(language)) {
  9. String[] split = language.split("_");
  10. locale = new Locale(split[0], split[1]);
  11. }
  12. return locale;
  13. }
  14. @Override
  15. public void setLocale(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Locale locale) {
  16. }
  17. }

将组件注册进IOC容器

  1. @Configuration
  2. public class MyConfig implements WebMvcConfigurer {
  3. @Override
  4. public void addViewControllers(ViewControllerRegistry registry) {
  5. // 访问首页,建议使用扩展MVC
  6. registry.addViewController("/").setViewName("index");
  7. registry.addViewController("/index").setViewName("index");
  8. registry.addViewController("/index.html").setViewName("index");
  9. }
  10. //登录拦截器
  11. @Override
  12. public void addInterceptors(InterceptorRegistry registry) {
  13. // 配置自定义拦截器
  14. registry.addInterceptor(new LoginHandlerInterceptor())
  15. .addPathPatterns("/**")
  16. .excludePathPatterns("/index", "/", "/user/login",
  17. "/assets/**", "/dist/**", "/css/**", "/img/**", "/js/**");
  18. }
  19. // 国际化解析器注册进组件
  20. @Bean
  21. public LocaleResolver localeResolver() {
  22. return new MyLocalResolver();
  23. }
  24. }

5、CRUD环节

1、下载Bootstrap前端模板工程

BootStrap官网

 可以直接下载全部模板,也可以挑选2个需要的页面下载,例如Dashboard和Sign-in

解压缩,将asserts和dist两个文件夹复制到static目录下,还可以新建个favicon.icon

 再打开docs/4.0/examples目录,挑选需要的页面,复制到templates下面

 启动项目,访问登录页面

2、提取公共页面

新建commons.html,将Dashboard.html的顶部横幅、侧边栏剪切过来

  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <!--提取首页横幅-->
  9. <nav class="navbar navbar-dark sticky-top bg-dark flex-md-nowrap p-0" th:fragment="navbar">
  10. <a class="navbar-brand col-sm-3 col-md-2 mr-0" href="#">Company name</a>
  11. <input class="form-control form-control-dark w-100" type="text" placeholder="Search" aria-label="Search">
  12. <ul class="navbar-nav px-3">
  13. <li class="nav-item text-nowrap">
  14. <a class="nav-link" href="/user/logout">Sign out</a>
  15. </li>
  16. </ul>
  17. </nav>
  18. <!--提取侧边栏-->
  19. <nav class="col-md-2 d-none d-md-block bg-light sidebar" th:fragment="sidebar">
  20. <div class="sidebar-sticky">
  21. <ul class="nav flex-column">
  22. <li class="nav-item">
  23. <a class="nav-link active" href="/toDashboard">
  24. <span data-feather="home"></span>
  25. Dashboard <span class="sr-only">(current)</span>
  26. </a>
  27. </li>
  28. <li class="nav-item">
  29. <a class="nav-link" href="/Employee/selectAll">
  30. <span data-feather="file"></span>
  31. 员工管理
  32. </a>
  33. </li>
  34. <li class="nav-item">
  35. <a class="nav-link" href="#">
  36. <span data-feather="shopping-cart"></span>
  37. Products
  38. </a>
  39. </li>
  40. <li class="nav-item">
  41. <a class="nav-link" href="#">
  42. <span data-feather="users"></span>
  43. Customers
  44. </a>
  45. </li>
  46. <li class="nav-item">
  47. <a class="nav-link" href="#">
  48. <span data-feather="bar-chart-2"></span>
  49. Reports
  50. </a>
  51. </li>
  52. <li class="nav-item">
  53. <a class="nav-link" href="#">
  54. <span data-feather="layers"></span>
  55. Integrations
  56. </a>
  57. </li>
  58. </ul>
  59. <h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted">
  60. <span>Saved reports</span>
  61. <a class="d-flex align-items-center text-muted" href="#">
  62. <span data-feather="plus-circle"></span>
  63. </a>
  64. </h6>
  65. <ul class="nav flex-column mb-2">
  66. <li class="nav-item">
  67. <a class="nav-link" href="#">
  68. <span data-feather="file-text"></span>
  69. Current month
  70. </a>
  71. </li>
  72. <li class="nav-item">
  73. <a class="nav-link" href="#">
  74. <span data-feather="file-text"></span>
  75. Last quarter
  76. </a>
  77. </li>
  78. <li class="nav-item">
  79. <a class="nav-link" href="#">
  80. <span data-feather="file-text"></span>
  81. Social engagement
  82. </a>
  83. </li>
  84. <li class="nav-item">
  85. <a class="nav-link" href="#">
  86. <span data-feather="file-text"></span>
  87. Year-end sale
  88. </a>
  89. </li>
  90. </ul>
  91. </div>
  92. </nav>
  93. </body>
  94. </html>

修改Dashboard.html,将commons.html的元素引入

  1. <!doctype html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <meta name="description" content="员工管理系统">
  7. <meta name="author" content="孙琳昱">
  8. <link rel="icon" href="../../../../favicon.ico">
  9. <title>Dashboard Template for Bootstrap</title>
  10. <!-- Bootstrap core CSS -->
  11. <link href="../../../../dist/css/bootstrap.min.css" rel="stylesheet">
  12. <!-- Custom styles for this template -->
  13. <link href="dashboard.css" rel="stylesheet">
  14. </head>
  15. <body>
  16. <div th:replace="~{commons::navbar}"></div>
  17. <div class="container-fluid">
  18. <div class="row">
  19. <div th:replace="~{commons::sidebar}"></div>
  20. <main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
  21. <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pb-2 mb-3 border-bottom">
  22. <h1 class="h2">Dashboard</h1>
  23. <div class="btn-toolbar mb-2 mb-md-0">
  24. <div class="btn-group mr-2">
  25. <button class="btn btn-sm btn-outline-secondary">Share</button>
  26. <button class="btn btn-sm btn-outline-secondary">Export</button>
  27. </div>
  28. <button class="btn btn-sm btn-outline-secondary dropdown-toggle">
  29. <span data-feather="calendar"></span>
  30. This week
  31. </button>
  32. </div>
  33. </div>
  34. <canvas class="my-4" id="myChart" width="900" height="380"></canvas>
  35. <h2>Section title</h2>
  36. <div class="table-responsive">
  37. <table class="table table-striped table-sm">
  38. <thead>
  39. <tr>
  40. <th>id</th>
  41. <th>name</th>
  42. <th>class</th>
  43. <th>favourite</th>
  44. <th>Header</th>
  45. </tr>
  46. </thead>
  47. <tbody>
  48. <tr>
  49. <td>1,001</td>
  50. <td>Lorem</td>
  51. <td>ipsum</td>
  52. <td>dolor</td>
  53. <td>sit</td>
  54. </tr>
  55. </tbody>
  56. </table>
  57. </div>
  58. </main>
  59. </div>
  60. </div>
  61. <!-- Bootstrap core JavaScript
  62. ================================================== -->
  63. <!-- Placed at the end of the document so the pages load faster -->
  64. <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
  65. integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
  66. crossorigin="anonymous"></script>
  67. <script>window.jQuery || document.write('<script src="../../../../assets/js/vendor/jquery-slim.min.js"><\/script>')</script>
  68. <script src="../../../../assets/js/vendor/popper.min.js"></script>
  69. <script src="../../../../dist/js/bootstrap.min.js"></script>
  70. <!-- Icons -->
  71. <script src="https://unpkg.com/feather-icons/dist/feather.min.js"></script>
  72. <script>
  73. feather.replace()
  74. </script>
  75. <!-- Graphs -->
  76. <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.min.js"></script>
  77. <script>
  78. var ctx = document.getElementById("myChart");
  79. var myChart = new Chart(ctx, {
  80. type: 'line',
  81. data: {
  82. labels: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
  83. datasets: [{
  84. data: [15339, 21345, 18483, 24003, 23489, 24092, 12034],
  85. lineTension: 0,
  86. backgroundColor: 'transparent',
  87. borderColor: '#007bff',
  88. borderWidth: 4,
  89. pointBackgroundColor: '#007bff'
  90. }]
  91. },
  92. options: {
  93. scales: {
  94. yAxes: [{
  95. ticks: {
  96. beginAtZero: false
  97. }
  98. }]
  99. },
  100. legend: {
  101. display: false,
  102. }
  103. }
  104. });
  105. </script>
  106. </body>
  107. </html>

3、登陆、登出功能、404页面

编写LoginController

  1. @Controller
  2. @RequestMapping("/user")
  3. public class LoginController {
  4. @RequestMapping("/login")
  5. public String login(HttpServletRequest request,
  6. @RequestParam("email") String email,
  7. @RequestParam("password") String password) {
  8. System.out.println("login方法");
  9. request.getSession().setAttribute("email", email);
  10. return "/dashboard";
  11. }
  12. @RequestMapping("/logout")
  13. public String logout(HttpServletRequest request) {
  14. System.out.println("logout方法");
  15. request.getSession().removeAttribute("email");
  16. return "/index";
  17. }
  18. }

index.html配置表单提交接口,调用登陆接口

<form class="form-signin" action="/user/login" type="post">

登出按钮配置在commos的首页横幅中,调用登出接口

<a class="nav-link" href="/user/logout">Sign out</a>

启动项目测试

404页面Springboot有规定,在templates下新建error文件夹,再新建404.html即可

4、员工列表查询

编写EmployeeController

  1. @Controller
  2. @RequestMapping("/Employee")
  3. public class EmployeeController {
  4. @Autowired
  5. private EmployeeDao employeeDao;
  6. @Autowired
  7. private DepartmentDao departmentDao;
  8. @GetMapping("/selectAll")
  9. public String selectAll(Model model) {
  10. System.out.println("selectAll方法");
  11. Collection<Employee> employees = employeeDao.getAllEmp();
  12. model.addAttribute("emps", employees);
  13. return "/employee/list";
  14. }
  15. }

新建list.html,从Dashboard.html复制,然后修改内容,编写表格

  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <meta name="description" content="员工管理系统">
  7. <meta name="author" content="孙琳昱">
  8. <link rel="icon" href="../../../../favicon.ico">
  9. <title>Dashboard Template for Bootstrap</title>
  10. <!-- Bootstrap core CSS -->
  11. <link href="../../../../dist/css/bootstrap.min.css" rel="stylesheet">
  12. <!-- Custom styles for this template -->
  13. <link href="dashboard.css" rel="stylesheet">
  14. </head>
  15. <body>
  16. <div th:replace="~{commons::navbar}"></div>
  17. <div class="container-fluid">
  18. <div class="row">
  19. <div th:replace="~{commons::sidebar}"></div>
  20. <main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
  21. <table class="table table-striped table-sm">
  22. <!--添加员工-->
  23. <h2>
  24. <!--默认get请求,第一次回显员工中的部门信息使用默认的get请求-->
  25. <a class="btn btn-sm btn-success" th:href="@{/Employee/toAdd}">添加员工</a>
  26. </h2>
  27. <br/>
  28. <thead>
  29. <tr>
  30. <th>id</th>
  31. <th>lastName</th>
  32. <th>email</th>
  33. <th>gender</th>
  34. <th>department</th>
  35. <th>birth</th>
  36. <th>操作</th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. <tr th:each="emp:${emps}">
  41. <td th:text="${emp.getId()}"></td>
  42. <td th:text="${emp.getLastName()}"></td>
  43. <td th:text="${emp.getEmail()}"></td>
  44. <!--性别需要前端判断-->
  45. <td th:text="${emp.getGender()==0?'女':'男'}"></td>
  46. <td th:text="${emp.getDepartment().getDepartmentName()}"></td>
  47. <!--日期需要改变格式-->
  48. <td th:text="${#dates.format(emp.getBirth(),'yyyy-MM-dd HH:mm:ss')}"></td>
  49. <td>
  50. <a class="btn btn-sm btn-primary" th:href="@{/Employee/toUpdate/}+${emp.getId()}">编辑</a>
  51. <a class="btn btn-sm btn-danger" th:href="@{/Employee/delete/}+${emp.getId()}">删除</a>
  52. <!-- button无法传递url -->
  53. <button class="btn btn-sm btn-danger" th:href="@{/Employee/delete/}+${emp.getId()}">删除2</button>
  54. </td>
  55. </tr>
  56. </tbody>
  57. </table>
  58. </main>
  59. </div>
  60. </div>
  61. <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
  62. integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
  63. crossorigin="anonymous"></script>
  64. <script>window.jQuery || document.write('<script src="../../../../assets/js/vendor/jquery-slim.min.js"><\/script>')</script>
  65. <script src="../../../../assets/js/vendor/popper.min.js"></script>
  66. <script src="../../../../dist/js/bootstrap.min.js"></script>
  67. <!-- Icons -->
  68. <script src="https://unpkg.com/feather-icons/dist/feather.min.js"></script>
  69. <script>
  70. feather.replace()
  71. </script>
  72. <!-- Graphs -->
  73. <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.min.js"></script>
  74. </body>
  75. </html>

启动项目测试

5、新增员工

编写add.html

  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <form th:action="@{/Employee/add}" method="post">
  9. <div class="form-group">
  10. <label>LastName</label>
  11. <input name="lastName" value="tom" type="text" class="form-control" id="exampleInputEmail1"
  12. placeholder="lastName">
  13. </div>
  14. <div class="form-group">
  15. <label>Email</label>
  16. <input name="email" value="123456@qq.com" type="email" class="form-control" id="exampleInputPassword1"
  17. placeholder="email">
  18. </div>
  19. <div class="form-group">
  20. <label>Gender</label>
  21. <div class="form-check form-check-inline">
  22. <input class="form-check-input" type="radio" value="1" name="gender"/>
  23. <label class="form-check-label"></label>
  24. </div>
  25. <div class="form-check form-check-inline">
  26. <input class="form-check-input" type="radio" value="0" name="gender"/>
  27. <label class="form-check-label"></label>
  28. </div>
  29. </div>
  30. <div class="form-group">
  31. <label>Department</label>
  32. <!--提交的Department的是部门id-->
  33. <select name="department.id" class="form-control">
  34. <option th:each="dept:${departments}"
  35. th:text="${dept.getDepartmentName()}"
  36. th:value="${dept.getId()}"></option>
  37. </select>
  38. </div>
  39. <div class="form-group">
  40. <label>Birth</label>
  41. <input name="birth" value="2020-5-27" type="text"
  42. class="form-control"
  43. placeholder="yyyy-MM-dd">
  44. </div>
  45. <button type="submit" class="btn btn-default">添加</button>
  46. </form>
  47. </body>
  48. </html>

在list.html添加add按钮

  1. <!--默认get请求,第一次回显员工中的部门信息使用默认的get请求-->
  2. <a class="btn btn-sm btn-success" th:href="@{/Employee/toAdd}">添加员工</a>

Controller新加接口

  1. @GetMapping("/toAdd")
  2. public String toAdd(Model model) {
  3. System.out.println("toAdd方法");
  4. // 查出所有部门的信息
  5. Collection<Department> departments = departmentDao.getDepartments();
  6. model.addAttribute("departments", departments);
  7. return "/employee/add";
  8. }
  9. @RequestMapping("/add")
  10. public String add(Model model, Employee employee) {
  11. System.out.println("add方法");
  12. employeeDao.saveEmp(employee);
  13. return "redirect:/Employee/selectAll";
  14. }

启动测试

 

6、修改员工

编写update.html

  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
  9. <form th:action="@{/Employee/update}" method="post">
  10. <!--隐藏查出来的empId-->
  11. <input type="hidden" th:value="${emp.getId()}">
  12. <div class="form-group">
  13. <label>LastName</label>
  14. <input name="lastName" th:value="${emp.getLastName()}" type="text" class="form-control"
  15. id="exampleInputEmail1" placeholder="lastName">
  16. </div>
  17. <div class="form-group">
  18. <label>Email</label>
  19. <input name="email" th:value="${emp.getEmail()}" type="email"
  20. class="form-control" id="exampleInputPassword1" placeholder="email">
  21. </div>
  22. <div class="form-group">
  23. <label>Gender</label>
  24. <div class="form-check form-check-inline">
  25. <input th:checked="${emp.getGender()==1}" class="form-check-input" type="radio"
  26. value="1" name="gender"/>
  27. <label class="form-check-label"></label>
  28. </div>
  29. <div class="form-check form-check-inline">
  30. <input th:checked="${emp.getGender()==0}" class="form-check-input" type="radio"
  31. value="0" name="gender"/>
  32. <label class="form-check-label"></label>
  33. </div>
  34. </div>
  35. <div class="form-group">
  36. <label>Department</label>
  37. <!--提交的value是id-->
  38. <select name="department.id" class="form-control">
  39. <!--回显:部门id等于员工部门的id-->
  40. <option th:each="dept:${departments}"
  41. th:selected="${dept.getId()==emp.getDepartment().getId()}"
  42. th:text="${dept.getDepartmentName()}"
  43. th:value="${dept.getId()}"></option>
  44. </select>
  45. </div>
  46. <div class="form-group">
  47. <label>Birth</label>
  48. <!--日期回显,需要更改默认格式-->
  49. <input th:value="${#dates.format(emp.getBirth(),'yyyy-MM-dd HH:mm:ss')}" name="birth" type="text"
  50. class="form-control" placeholder="yyyy-MM-dd">
  51. </div>
  52. <button type="submit" class="btn btn-default">修改</button>
  53. </form>
  54. </main>
  55. </body>
  56. </html>

在list.html添加update按钮

<a class="btn btn-sm btn-primary" th:href="@{/Employee/toUpdate/}+${emp.getId()}">编辑</a>

Controller新加接口

  1. @GetMapping("/toUpdate/{id}")
  2. public String toUpdate(@PathVariable("id") Integer id, Model model) {
  3. System.out.println("toUpdate方法");
  4. // 查出所有部门的信息
  5. Collection<Department> departments = departmentDao.getDepartments();
  6. model.addAttribute("departments", departments);
  7. // 获取雇员
  8. Employee employee = employeeDao.getEmployeeById(id);
  9. model.addAttribute("emp", employee);
  10. return "/employee/update";
  11. }
  12. @RequestMapping("/update")
  13. public String update(Model model, Employee employee) {
  14. System.out.println("update方法");
  15. employeeDao.saveEmp(employee);
  16. return "redirect:/Employee/selectAll";
  17. }

启动测试

 

7、删除员工

在list.html添加delete按钮

  1. <a class="btn btn-sm btn-danger" th:href="@{/Employee/delete/}+${emp.getId()}">删除</a>
  2. <!-- button无法传递url -->
  3. <button class="btn btn-sm btn-danger" th:href="@{/Employee/delete/}+${emp.getId()}">删除2</button>

Controller新加接口

  1. // 删除员工
  2. @GetMapping("/delete/{id}")
  3. public String delete(@PathVariable("id") Integer id) {
  4. System.out.println("delete方法");
  5. employeeDao.deleteEmployeeById(id);
  6. return "redirect:/Employee/selectAll";
  7. }

6、如何写一个网站

  1. 前端
    1. 模版:自己网站搜
    2. 框架:组件,需要自己手动拼接:BootStrap,Layui,semantic-ui
  2. 设计数据库(真正的难点)
  3. 前端让他能够自动运行,独立化工程
  4. 数据接口如何对接:json,对象
  5. 前后端联调
    1. 前端:自己能够通过“’框架”网站组合出一个网页
    2. 后端:必须要有自己熟悉的一个后台模版,99%公司会让你自己写:推荐X-admin网站模版
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/892849
推荐阅读
相关标签
  

闽ICP备14008679号