1.springboot环境搭建及第一个项目运行
记录b站尚硅谷视频笔记视频连接
1.springboot简介
2.微服务
3.环境准备
3.1.Maven设置
给maven的settings.xml配置文件的profiles标签中添加
jdk-1.8为jdk版本
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>ture</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
3.2.IDEA设置
4、springboot Hello world
一个功能:
浏览器发送hello请求,服务器接受请求并处理响应Hello字符串
4.1、创建一个maven工程;(jar)
4.2、导入springboot相关的依赖
<!--继承springboot父项目,依赖会自动匹配版本号-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<!--引入springboot的web支持,帮你封装好了很多个依赖-->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
4.3、编写一个主程序
/*
* @SpringBootApplication来标注一个主程序类,说明这是一个springboot应用
* */
@SpringBootApplication
public class Springboot01Application {
public static void main(String[] args) {
SpringApplication.run(Springboot01Application.class, args);
}
}