SpringBoot基础学习
Posted 学好编程不秃头
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot基础学习相关的知识,希望对你有一定的参考价值。
SpringBoot学习–基于springBoot2.5
官方文档:https://spring.io/
快速开始: 引入依赖
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.1</version>
</parent>
如果是web项目还需要引入相关的start:
例如
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
官方文档地址:springBoot官方网站
接下来就开始第一个程序吧!
创建一个类来启动
@SpringBootApplication // springboot核心注释
public class MainApplication
public static void main(String[] args)
SpringApplication.run(MainApplication.class,args);
在springboot中可以写properties和yaml的配置文件
如果有自己定义的类想获得提示需要引入依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
排除插件依赖:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
这里大概就是启动的基本过程了!!!
下期见!!
以上是关于SpringBoot基础学习的主要内容,如果未能解决你的问题,请参考以下文章