欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 科技 > 名人名企 > 基于springboot和mybatis的RealWorld后端项目实战一之hello-springboot

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

2024/11/30 8:54:29 来源:https://blog.csdn.net/douyh/article/details/140455896  浏览:    关键词:基于springboot和mybatis的RealWorld后端项目实战一之hello-springboot

新建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

在这里插入图片描述

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com