java - REST API命名问题请教
怪我咯
怪我咯 2017-04-18 10:52:41
0
3
566

雇员类

public User{
    int id;//key
    int code;//员工编号 唯一
    String name;
    ...
}

api

  1. GET /employee/{id} 根据ID获取人员

  2. GET /employee/{code}

如上:code也是唯一的,如果这么命名是会混淆,应该如何命名?

怪我咯
怪我咯

走同样的路,发现不同的人生

reply all(3)
阿神

/employee/code/{code}

洪涛

Getting the only user is /employee/{id}. What should be obtained through this URL is the user entity object.
For the properties inside the entity object: code . Should not be obtained by exposing the URL.

The first step when designing RESTURL is resource abstraction. It is necessary to clearly distinguish which resources can be extracted and design a unique URL. What can’t be done

Ty80

RESTful resources generally use plural numbers. I think code can also be used as a search condition: /employees/search?code=xxx. Of course, code can also be obtained and changed as a resource of employee, but when searching for employee through code, it should be Belongs to the search function.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!