记一次错误使用feign

在实现短信注册的功能实现上,出现了一次请求发送两条验证码的情况,后查实验证不能在feign的接口方法中使用@GetMapping等注解,需要使用一下格式

@FeignClient(name = "sms-server")
public interface SmsFeignClient {

    @RequestMapping(value = "/sms", method = RequestMethod.GET)
    String toVerifyRegister(@RequestParam("phone") String phone);

    @RequestMapping(value = "/sms/verify", method = RequestMethod.GET)
    String getSmsVerify(@RequestParam("phone")String phone,@RequestParam("type")String type);

    @RequestMapping(value = "/sms/update",method = RequestMethod.GET)
    String toVerifyUpdatePwd(@RequestParam("phone") String phone);
}

 

你可能感兴趣的:(记一次错误使用feign)