1.创建maven项目:
2.导入依赖:
官网下载依赖:https://start.spring.io/
把下载下来的压缩包里的pom文件复制:
替换项目里的pom文件,修改部分内容:
重新加载项目:
3.编写主程序
在java文件夹下创建包
创建一个java类:
编写代码:
package org.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@GetMapping("/hello")
public String hello(@RequestParam(value = "name", defaultValue = "World") String name) {
return String.format("Hello %s!", name);
}
}
4.运行springboot
直接运行,访问http://localhost:8080/
5.SpringBoot简化部署
双击package打成jar包:
jar包位置:
去终端运行jar包:
这样也可以在浏览器直接访问。