idea 创建一个springboot 项目(hello world)

1. 打开IDEA,点击 +Create New Project

idea 创建一个springboot 项目(hello world)_第1张图片

2. 在左侧菜单找到并点击 Spring Initializr,点击next。

注意,这里idea默认使用https://start.spring.io提供的在线模板,所以需要保证网络畅通.
idea 创建一个springboot 项目(hello world)_第2张图片

3. 修改工程名,Maven Project(项目的构建工具),点击next。

idea 创建一个springboot 项目(hello world)_第3张图片

4. 添加依赖

从左面选择大类,然后在窗口中间勾选需要的依赖。右边可以看到已选择的依赖项。
右上方还可以下拉选择Spring Boot的版本。完成后点击 Next。
创建基础工程,依赖不用选很多,web一个就够了
idea 创建一个springboot 项目(hello world)_第4张图片

5. 设置项目名称/工程目录

设置项目名称Project name 和 工程保存路径 Project location。完成后,点击 Finish。
idea 创建一个springboot 项目(hello world)_第5张图片

6. 等待IDEA构建项目

idea 创建一个springboot 项目(hello world)_第6张图片

7. 建立好的项目结构

idea 创建一个springboot 项目(hello world)_第7张图片
如果出现项目报错 ,可能是版本过高导致的
刚新建就会发现,can not resolved SpringBootApplication,入口程序就报错了。查看pom.xml也有报错,然后网上一通搜,各种方法几乎全部试完,终于发现是因为parent版本太高导致
idea 创建一个springboot 项目(hello world)_第8张图片
把这个版本降低,别急,刚改完它就报错了,然后重新maven install,之后maven – reimport 就可以解决这个问题了

问题二:Error:(3, 29) java: 程序包org.junit.jupiter.api不存在

解决方法:
idea 创建一个springboot 项目(hello world)_第9张图片

8. 写个hello world,看项目能不能启动

@RestController
@SpringBootApplication
public class AlonApplication {

    public static void main(String[] args) {
        SpringApplication.run(AlonApplication.class, args);
    }

    @RequestMapping()
    public String hello(){
        return "hello spring boot \n 谢谢阅读!";
    }

}

idea 创建一个springboot 项目(hello world)_第10张图片

9. 浏览器验证结果 http://localhost:8080

idea 创建一个springboot 项目(hello world)_第11张图片

你可能感兴趣的:(Java,windows,spring,boot)