- 导入依赖
<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>
- 主程序类
//@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 hello(){return "hello,world";}}
- 测试
运行主程序中的main方法
- 简化配置
application.properties
server.port=8888
- 简化部署
pom.xml
<build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId></plugin></plugins></build>
把项目打成jar包,直接在目标服务器执行即可。
注意点:
● 取消掉cmd的快速编辑模式