Skip to content

rainlinx/spring-boot-examples

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot 学习示例

Spring Boot 2.5.9 Mysql 5.6 JDK 1.8 Maven license

Spring Boot 使用的各种示例,以最简单、最实用为标准,此开源项目中的每个示例都以最小依赖,最简单为标准,帮助初学者快速掌握 Spring Boot 各组件的使用。


升级日志:

2022-01-26

将工程使用的Spring-Boot版本从2.1.18升级为2.5.9,主要有以下较大变化:

  • spring-boot-starter-test默认不包含junit4依赖,如需使用,需要自主添加依赖
    <dependency>
            <groupId>org.junit.vintage</groupId>
            <artifactId>junit-vintage-engine</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.hamcrest</groupId>
                    <artifactId>hamcrest-core</artifactId>
                </exclusion>
            </exclusions>
    </dependency>
  • spring-boot-starter-web默认不包含hibernate-validator依赖,需自主添加依赖
    <dependency>
      		<groupId>org.springframework.boot</groupId>
      		<artifactId>spring-boot-starter-test</artifactId>
      		<scope>test</scope>
    </dependency>

About

about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 90.7%
  • HTML 8.3%
  • Other 1.0%