idea创建springboot项目

idea创建springboot项目

    • Maven创建
      • Pom 中添加父项目
      • 添加springboot web场景的启动器,帮我们导入了web模块正常运行的组件
    • 使用Springinitializer向导快速创建springboot项目

Maven创建

Pom 中添加父项目


    org.springframework.boot
    spring-boot-starter-parent
    2.3.1.RELEASE

Spring boot 版本仲裁中心(以后写依赖不需要写版本号)

添加springboot web场景的启动器,帮我们导入了web模块正常运行的组件


    
        org.springframework.boot
        spring-boot-starter-web
    

在这里插入图片描述

使用Springinitializer向导快速创建springboot项目

idea创建springboot项目_第1张图片
idea创建springboot项目_第2张图片
勾选需要的功能
idea创建springboot项目_第3张图片
建好后的resources文件夹中
在这里插入图片描述

你可能感兴趣的:(idea创建springboot项目)