如何更改feign客户端请求体中的字段名称?

发布于 2025-01-09 08:30:25 字数 726 浏览 1 评论 0原文

我有一个假客户端,它使用 dto 使用 @RequestBody 执行请求。问题是某些属性与java标准不匹配,例如id_client。有没有办法更改变量名称并使其与 feign 一起工作?

下面是请求正文中使用的 dto 的 feign 客户端的代码。

@FeignClient(name="sso-token", url = "http://keycloak.com.br:8180", path="/")
public interface SsoTokenQueryWebAdapter {


    @PostMapping(value = "/auth/realms/real-refrigerantes/protocol/openid-connect/token", consumes = "application/x-www-form-urlencoded")
    public String recuperarToken(@RequestBody RequestTokenDto dto);

}

@Data
public class RequestTokenDto {
    
private String username;

    private String password;

    private String client_id;

    private String client_secret;
    
    private String grant_type;

}

I have a feign client that uses a dto to perform the request using @RequestBody. The problem is that some property does not match with the java standards, for example id_client. Is there a way to change the variable name and keep it working with the feign ?

Below there is the code of the feign client the dto used in the request body.

@FeignClient(name="sso-token", url = "http://keycloak.com.br:8180", path="/")
public interface SsoTokenQueryWebAdapter {


    @PostMapping(value = "/auth/realms/real-refrigerantes/protocol/openid-connect/token", consumes = "application/x-www-form-urlencoded")
    public String recuperarToken(@RequestBody RequestTokenDto dto);

}

@Data
public class RequestTokenDto {
    
private String username;

    private String password;

    private String client_id;

    private String client_secret;
    
    private String grant_type;

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

想挽留 2025-01-16 08:30:25
@Data
public class RequestTokenDto {
    private String username;
    private String password;

    @FormProperty("client_id")
    @JsonProperty("client_id")
    private String clientId;

    @FormProperty("client_secret")
    @JsonProperty("client_secret")
    private String clientSecret;

    @FormProperty("grant_type")
    @JsonProperty("grant_type")
    private String grantType;
}
@Data
public class RequestTokenDto {
    private String username;
    private String password;

    @FormProperty("client_id")
    @JsonProperty("client_id")
    private String clientId;

    @FormProperty("client_secret")
    @JsonProperty("client_secret")
    private String clientSecret;

    @FormProperty("grant_type")
    @JsonProperty("grant_type")
    private String grantType;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文