mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
restful调用优化
This commit is contained in:
@@ -26,7 +26,7 @@ import java.util.Collection;
|
||||
public class TraditionalWebappController {
|
||||
|
||||
|
||||
// http://localhost:8081/rest/food/getFoodById?id=1 网关入口
|
||||
// http://localhost:8081/rest/story-service/food/getFoodById?id=1 网关入口
|
||||
// http://localhost:2222/food/getFoodById/?id=12 本地入口
|
||||
@ApiOperation(value="获取食物", notes = "根据id获取食物")
|
||||
@RequestMapping(value = "getFoodById", method = RequestMethod.GET)
|
||||
@@ -38,13 +38,13 @@ public class TraditionalWebappController {
|
||||
return food;
|
||||
}
|
||||
|
||||
// http://localhost:8081/rest/food/getFoodByObj?id=2
|
||||
// http://localhost:8081/rest/story-service/food/getFoodByObj?id=2
|
||||
@RequestMapping(value = "getFoodByObj", method = RequestMethod.GET)
|
||||
public Food getFoodByObj(Food food) {
|
||||
return food;
|
||||
}
|
||||
|
||||
// http://localhost:8081/rest/food/saveFood
|
||||
// http://localhost:8081/rest/story-service/food/saveFood
|
||||
@RequestMapping(value = "saveFood", method = RequestMethod.POST)
|
||||
public Food saveFood(@RequestBody Food food) {
|
||||
food.setId(3);
|
||||
@@ -79,7 +79,7 @@ public class TraditionalWebappController {
|
||||
}
|
||||
|
||||
// http://localhost:2222/food/get/3 本地
|
||||
// http://localhost:8081/rest/food/get/3 网关访问
|
||||
// http://localhost:8081/rest/story-service/food/get/3 网关访问
|
||||
@RequestMapping("/get/{id}")
|
||||
public Food getById(@PathVariable("id") Integer id) {
|
||||
Food food = new Food();
|
||||
|
Reference in New Issue
Block a user