第一步
首先new一个新的project选择Spring initializr 配置好相关信息后下一步
在左上角我们可以选择SprinBoot 的版本,在这里直接加入web依赖spring web和Template的Thymeleaf依赖,点上对勾后可以在最右边里看到你选择的依赖 ,然后点击create
可以看到我们的项目结构,很多springboot都帮我们创建
第二步
我们直接在MavenDemoApplication中加入以下代码
package com.example.maven_demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.stereotype.Controller; 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 MavenDemoApplication { public static void main(String[] args) { SpringApplication.run(MavenDemoApplication.class, args); } @GetMapping("/hello") public String hello(@RequestParam(value = "name", defaultValue = "World") String name) { return String.format("Hello %s!", name); } }
运行一下 如果出现以下代码说明成功了 !右下角的8080是我们的端口服务器默认值
点http://localhost:8080/hello或在浏览器中输入访问"http://localhost:8080/hello"
第三步
我们也可以修改启动端口,在resources下的applicatin.proerties里加上server.port=“可以按自己的需求更改” 这里我们改成9999
运行一下 可以看见端口号以及变成9999了
编辑 然后我们浏览器中打开http://localhost:9999/hello