展开
拓展 关闭
订阅号推广码
GitHub
视频
公告栏 关闭

spring boot入门

https://spring.io/
  • 查看官方文档

  • 查看新版本特性

  • yml配置文档

  • 构建1个spring boot项目

  • 先创建1个maven项目,导入依赖

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.3.4.RELEASE</version>
</parent>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>
  • 编写配置类: application.properties
server.port=8888
  • 创建启动类
/**
 * 主程序类
 * @SpringBootApplication:这是一个SpringBoot应用
 */
@SpringBootApplication
public class MainApplication {

    public static void main(String[] args) {
        SpringApplication.run(MainApplication.class,args);
    }
}
  • 编写业务接口
@RestController
public class HelloController {

    @RequestMapping("/hello")
    public String handle01(){
        return "Hello, Spring Boot 2!";
    }

}
  • 将项目打包,需要添加插件
<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>
  • 使用cmd启动jar失败时,需取消掉cmd的快速编辑模式
posted @ 2022-07-28 10:13  DogLeftover  阅读(11)  评论(0编辑  收藏  举报