问题
How can i use @ModelAttribute
with GET method of request
@FeignClient("xx")
interface UserService{
@RequestMapping(value="/users",method=GET)
public List<User> findBy(@ModelAttribute User user);
}
userService.findBy(user);
来源:https://stackoverflow.com/questions/35456991/spring-cloud-feign-client-cant-use-modelattribute