【2】Spring Boot 3 项目搭建

目录

  • 【2】Spring Boot 3 初始项目搭建
    • 项目生成
      • 1. 使用IDEA商业版创建
      • 2. 使用官方start脚手架创建
    • 配置与启动
    • Git版本控制

个人主页: 【⭐️个人主页】
需要您的【 点赞+关注】支持


【2】Spring Boot 3 初始项目搭建

项目生成

1. 使用IDEA商业版创建

2. 使用官方start脚手架创建

官网: https://start.spring.io/

【2】Spring Boot 3 项目搭建_第1张图片

脚手架共享配置

  1. 点击生成后,自动下载 zip包,将zip代码解压到自己指定的目录下

配置与启动

  1. 使用idea或eclipse导入或生成 项目

  2. 修改gradle下载源【使用maven不需要】

    在你的Gradle项目中找到gradle/wrapper目录下的gradle-wrapper.properties文件
    腾讯
    distributionUrl=https://mirrors.tencent.com/gradle/gradle-{version}-bin.zip

  3. 修改 gradle 的 aliyun maven仓库
    build.gradle文件中增加

    	//做全局配置
    allprojects {
    	apply plugin: 'idea'
    	apply plugin: 'java'
    
    	tasks.withType(JavaCompile){
    		options.encoding = "UTF-8"
    	}
    
    	repositories {
    		mavenLocal()
    		maven {
    			url 'https://maven.aliyun.com/repository/public/'
    		}
    		mavenCentral()
    	}
    }
    
  4. 编写test api

    @RestController
    @RequestMapping("/home")
    public class HomeApi {
    
        @GetMapping("/index")
        public Map<String,String> home(){
            String home = """
                    我是谁,我在那里,我要干什么?
                    努力,努力,世界,第一。
                    你好,你好,都是,老表。
                    
                    """;
            return Map.of("ok",home);
        }
    
    }
    
  5. 启动

    【2】Spring Boot 3 项目搭建_第2张图片

Git版本控制

初始化Git版本控制
增加.gitignore文件。自行添加,或者使用idea插件生成
bash git add . git commit -s -m "初始化项目" # git push

Gitee代码仓库样例

你可能感兴趣的:(#,spring,boot,spring,boot,后端,java)