Springboot写后端http请求(供别人调用)

1 先写一个类 Product.java

2 新建一个接口 IproductService

3 写一个controller(用到RestController注解)

Springboot写后端http请求(供别人调用)_第1张图片

controller

4 创建一个service类(使用@Service注解)实现接口;这个service不是必须的;只是和autowired配合使用,类注入用的,也可以直接正常引入吧

Springboot写后端http请求(供别人调用)_第2张图片

service

总结:

只有RestController是必须的,没有它请求不了;其他的都可以省略或者不要

参考文档 https://www.cainiaojc.com/springboot/springboot-rest-example.html

你可能感兴趣的:(spring,boot,http,java)