springboot 其一
SpringBoot笔记 其一开始第一个springboot项目1.创建Maven项目2.导入依赖1234567891011<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.5.4</version></parent><dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency></dependencies>
3.编写一个主程序:启动springBooy应用 ...