- 需求
- 实现
- 打包部署
发送请求/hello,响应“Hello,Spring Boot 2”。
实现- 新建Maven工程:helloworld
生成的pom.xml如下,
4.0.0 com.example helloworld 1.0-SNAPSHOT 8 8
- 修改pom.xml,添加依赖
org.springframework.boot spring-boot-starter-parent 2.6.1 org.springframework.boot spring-boot-starter-web 2.6.1
- 创建启动类com.example.boot.MainApplication
package com.example.boot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MainApplication {
public static void main(String[] args) {
SpringApplication.run(MainApplication.class,args);
}
}
- 创建控制器com.example.boot.controller.HelloController
package com.example.boot.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
//@Controller
//@ResponseBody
@RestController
public class HelloController {
@RequestMapping(value = "/hello")
public String hello(){
return "Hello,Spring Boot 2";
}
}
- resources下添加配置文件application.yml
server: port: 8088
- 运行MainApplication#main,启动应用
- 访问localhost:8088/hello
- pom.xml里添加maven打包插件,如下,
org.springframework.boot spring-boot-maven-plugin
- package 打包。
- java -jar 启动应用
- 依然可访问接口localhost:8088/hello



