一、SpringBoot基础[安装IDEA、第一个页面]

一、安装

安装:IntelliJ IDEA
网址:https://www.jetbrains.com.cn/idea/download/?section=windows
安装细节:
一、SpringBoot基础[安装IDEA、第一个页面]_第1张图片

二、创建

一、SpringBoot基础[安装IDEA、第一个页面]_第2张图片

三、第一个页面

1.配置

引入父类和配置:parentdependencies
安装:引入好后要进行安装,在idea里面右键角有一个类似刷新的标志,点击即可安装

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.gaodidi</groupId>
    <artifactId>gaodidi</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>3.1.2</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
</project>

2.主程序

package com.gaodidi;

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

@SpringBootApplication
public class Main {

    public static void main(String[] args) {

        SpringApplication.run(Main.class,args);
    }
}

3.路由

package com.gaodidi.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class hello {
    @ResponseBody
    @GetMapping("/doudou")
    public String hello(){
        return "hello";
    }
}

4.启动项目

运行: 启动有SpringApplication.run(Main.class,args);这个文件即可

5.改变端口号

解释:在resources目录下面创建application.properties文件

内容:server.port=9876

你可能感兴趣的:(spring,boot,intellij-idea,后端)