基于springboot和mybatis的RealWorld后端项目实战一之hello-springboot

avatar
作者
筋斗云
阅读量:0

新建Maven项目

注意archetype选择quickstart
在这里插入图片描述

pom.xml

在这里插入图片描述
在这里插入图片描述

修改App.java

在这里插入图片描述

App.java同级目录新增controller包

在这里插入图片描述

HelloController.java

package org.example.controller;  import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController;  @RestController @RequestMapping("hello") public class HelloController {      @GetMapping("/show")     public String sayHello(){         return "helloworld";     } }  

启动服务

浏览器输入

http://localhost:8080/hello/show 

在这里插入图片描述

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!