当前位置:   article > 正文

springboot入门(3)——三个restful风格接口,postman测试_java restful postman

java restful postman

一、创建项目

创建的过程在上一篇文章中有介绍,这里就不赘述了,这篇博客着重介绍restful接口和postman测试web。
创建项目请戳这里:如何创建一个项目

1.代码及文件

在src—main—java—com.example.(你的文件名)下,新建包名(括号内表示文件名)
bean(Count)、controller(Controller)、manage(Manage)、service(Service);
如下:
在这里插入图片描述
Count代码

package com.example.myspringboot.bean;

public class Count {
   
    private int count;

    public int getCount() {
   
        return count;
    }

    public void setCount(int count) {
   
        this.count = count;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

Controller代码

package com.example.myspringboot.controller;

import com.example.myspringboot.bean.Count;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import
  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/580035
推荐阅读
相关标签
  

闽ICP备14008679号