Spring Boot 001 环境配置以及初始化项目

知识储备

后端:JavaSE, SSM(Spring+SpringMVC+MyBatis)

前端:HTML, CSS, Javascript

环境准备

JDK17+下载

Java Downloads | Oracle

安装方式

JDK17在Windows安装以及环境变量配置(超详细的教程)_jdk17安装教程详细-CSDN博客

IDEA安装

其他版本 - IntelliJ IDEA (jetbrains.com.cn)

VS Code

Visual Studio Code - Code Editing. Redefined

MySQL8安装

MySQL8超详细安装教程_mysql8安装-CSDN博客

创建Spring Boot项目

使用IDEA创建

使用IDEA引到界面创建项目

Spring Boot 001 环境配置以及初始化项目_第1张图片

Spring Boot 001 环境配置以及初始化项目_第2张图片

认识一下项目文件

porn.xml

Spring Boot 001 环境配置以及初始化项目_第3张图片

Application启动文件Spring Boot 001 环境配置以及初始化项目_第4张图片

编写control文件

Spring Boot 001 环境配置以及初始化项目_第5张图片

package com.geji.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @RequestMapping("/hello")
    public String hello() {
        return "Hello World2~";
    }
}

启动application文件

Spring Boot 001 环境配置以及初始化项目_第6张图片

打开网页查看

Spring Boot 001 环境配置以及初始化项目_第7张图片

手动创建

创建Maven工程

Spring Boot 001 环境配置以及初始化项目_第8张图片

Spring Boot 001 环境配置以及初始化项目_第9张图片

porn.xml引入依赖

sprint boot工程

  
  
    org.springframework.boot
    spring-boot-starter-parent
    3.1.8
     
  

Spring Boot 001 环境配置以及初始化项目_第10张图片

起步依赖

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

Spring Boot 001 环境配置以及初始化项目_第11张图片

刷新porn.xml

Spring Boot 001 环境配置以及初始化项目_第12张图片

编写启动类,改名字

Spring Boot 001 环境配置以及初始化项目_第13张图片

编写启动文件

package com.geji;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * Hello world!
 *
 */
@SpringBootApplication
public class SpringBootCreateManuallyApplication
{
    public static void main( String[] args )
    {
        SpringApplication.run(SpringBootCreateManuallyApplication.class,args);
    }
}

Spring Boot 001 环境配置以及初始化项目_第14张图片

创建resource目录

Spring Boot 001 环境配置以及初始化项目_第15张图片

resource目录下创建application.properties

Spring Boot 001 环境配置以及初始化项目_第16张图片

创建controller文件夹以及具体的文件

package com.geji.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @RequestMapping("/hello")
    public String hello() {
        return "Hello World2~";
    }
}

Spring Boot 001 环境配置以及初始化项目_第17张图片

Spring Boot配置文件
propeties形式

修改端口号以及虚拟路径

Spring Boot 001 环境配置以及初始化项目_第18张图片

打开网址验证效果

Spring Boot 001 环境配置以及初始化项目_第19张图片

yaml形式

Spring Boot 001 环境配置以及初始化项目_第20张图片

其他:yml文件的读取方式

Spring Boot 001 环境配置以及初始化项目_第21张图片

另一种简单的方法

Spring Boot 001 环境配置以及初始化项目_第22张图片

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