何以解忧
何以解忧
发布于 2024-06-04 / 76 阅读
0
0

SpringBoot-入门笔记

创建SpringBoot项目

1,创建Maven项目

2,配置pop.xml

<?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.jieyou.springboot</groupId>
    <artifactId>untitled</artifactId>
    <version>1.0-SNAPSHOT</version>

    <!--选择JDK版本-->
    <properties>
        <java.version>17</java.version>
    </properties>

    <!--父项目: springboot工程需要继承的父工程-->
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>3.3.0</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <dependencies>
        <!-- 启动器 -->
<!--        <dependency>-->
<!--            <groupId>org.springframework.boot</groupId>-->
<!--            <artifactId>spring-boot-starter</artifactId>-->
<!--        </dependency>-->

        <!--添加WEB开发的起步依赖-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <!--添加测试依赖-->
<!--        <dependency>-->
<!--            <groupId>org.springframework.boot</groupId>-->
<!--            <artifactId>spring-boot-starter-test</artifactId>-->
<!--            <scope>test</scope>-->
<!--        </dependency>-->
    </dependencies>

    <!--打包插件-->
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

3,创建引导类-项目启动入口

package com.jieyou.springboot;
//导入依赖
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication //作用:标识这是一个Spring Boot应用
public class Main {
    public static void main(String[] args) {
        //启动Spring Boot应用
        SpringApplication.run(Main.class, args);
    }
}

4,创建控制器-新建软件包和类

package com.jieyou.springboot.hello;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller //作用:标识这是一个控制器
public class HelloSpringBoot {
    @RequestMapping("/hello") //作用:映射请求路径
    @ResponseBody //作用:将返回值放在响应体中
    public String hello() {
        return "Hello Spring Boot";
    }

    @RequestMapping("/home")
    @ResponseBody
    public String home() {
        return "Hello I am Home";
    }

    @Controller //作用:标识这是一个控制器
    @RequestMapping("/api") //作用:映射请求路径
    public static class Api {
        @RequestMapping("/home")
        @ResponseBody
        public String api_home() {
            return "I am /Api/home";
        }

        @RequestMapping("/user")
        @ResponseBody
        public String api_user() {
            return "I am /Api/user";
        }
    }
}

运行项目+浏览器访问路径效果:


评论