|
|
@ -26,7 +26,7 @@ import java.util.Collection; |
|
|
|
public class TraditionalWebappController { |
|
|
|
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 本地入口
|
|
|
|
// http://localhost:2222/food/getFoodById/?id=12 本地入口
|
|
|
|
@ApiOperation(value="获取食物", notes = "根据id获取食物") |
|
|
|
@ApiOperation(value="获取食物", notes = "根据id获取食物") |
|
|
|
@RequestMapping(value = "getFoodById", method = RequestMethod.GET) |
|
|
|
@RequestMapping(value = "getFoodById", method = RequestMethod.GET) |
|
|
@ -38,13 +38,13 @@ public class TraditionalWebappController { |
|
|
|
return food; |
|
|
|
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) |
|
|
|
@RequestMapping(value = "getFoodByObj", method = RequestMethod.GET) |
|
|
|
public Food getFoodByObj(Food food) { |
|
|
|
public Food getFoodByObj(Food food) { |
|
|
|
return food; |
|
|
|
return food; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// http://localhost:8081/rest/food/saveFood
|
|
|
|
// http://localhost:8081/rest/story-service/food/saveFood
|
|
|
|
@RequestMapping(value = "saveFood", method = RequestMethod.POST) |
|
|
|
@RequestMapping(value = "saveFood", method = RequestMethod.POST) |
|
|
|
public Food saveFood(@RequestBody Food food) { |
|
|
|
public Food saveFood(@RequestBody Food food) { |
|
|
|
food.setId(3); |
|
|
|
food.setId(3); |
|
|
@ -79,7 +79,7 @@ public class TraditionalWebappController { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// http://localhost:2222/food/get/3 本地
|
|
|
|
// 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}") |
|
|
|
@RequestMapping("/get/{id}") |
|
|
|
public Food getById(@PathVariable("id") Integer id) { |
|
|
|
public Food getById(@PathVariable("id") Integer id) { |
|
|
|
Food food = new Food(); |
|
|
|
Food food = new Food(); |
|
|
|