1、新建Spring Starter Project
2、Packaging 选择 jar
3、勾选Web 项
4、项目结构
启动项目
1、创建 HelloController.java
package com.example.demo;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/hello")
public class HelloController {
@RequestMapping("/sts")
public String helloworld(){
return "使用spring-tool-suite插件";
}
}
2、运行 DemoApplication.java文件
或者 右键项目 Run As -> Spring Boot App
3、打印输出:Started DemoApplication in 3.977 seconds (JVM running for 6.73)
说明项目启动成功。
4、访问网页