方法一:通过Springboot官方提供的网站来创建
上面下载的压缩包解压后用IDEA直接打开即可
方法二:直接创建
方法三:maven工程改造
SpringBoot 工程本质是一个 maven 工程,所以我们创建一个 maven 工程将其改造成 SpringBoot 工程。
创建后,在pom.xml中配置一下
org.springframework.boot spring-boot-starter-parent 2.7.17 17 17 UTF-8 17 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter org.springframework.boot spring-boot-starter-test test
点击更新maven
创建SpringBoot 工程的入口类
创建一个类 XxxxApplication ,添加 @org.springframework.boot.autoconfigure.Springboo
- public static void main(String[] args) {
- SpringApplication.run(XxxxApplication.class, args);
- }