我正在用Java / Spring创建简单的rest客户。我的请求已被远程服务正确使用,并且得到了响应 String :
{"access_token":"d1c9ae1b-bf21-4b87-89be-262f6","token_type":"bearer","expires_in":43199,"grant_type":"client_credentials"}
下面的代码是我想从Json Response绑定值的对象
package Zadanie2.Zadanie2;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Token {
String access_token;
String token_type;
int expiresIn;
String grantType;
//////////////////////////////////////////////////////
public Token() {
/////////////////////////////////
}
/////////////////////////////////////////////////////
public void setAccessToken(String access_token) {
this.access_token=access_token;
}
public String getAccessToken() {
return access_token;
}
////////////////////////////////////////////////
public void setTokenType(String token_type) {
this.token_type=token_type;
}
public String getTokenType() {
return token_type;
}
//////////////////////////////////////////////////////
public void setExpiresIn(int expiresIn) {
this.expiresIn=expiresIn;
}
public int getExpiresIn() {
return expiresIn;
}
//////////////////////////////////////////////////////////
public void setGrantType(String grantType) {
this.grantType=grantType;
}
public String getGrantType() {
return grantType;
}
}
我总是得到“无法识别的字段access_token”,但是当我添加objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
时
那么access_token将为空
jsonAnswer=template.postForObject(baseUriAuthorize, requestEntity, String.class);
System.out.println(jsonAnswer);
Token token=objectMapper.readValue(jsonAnswer, Token.class);
System.out.println(token.getAccessToken());
我尝试使用@JsonProperty
注释。我尝试通过例如"@JsonProperty(accessToken)"
来更改字段,因为我认为变量名中的“ _”符号存在问题。我添加了getter和setter。我使用的版本可能存在问题,但我认为不是,因为我使用的是"com.fasterxml.jackson.core"
答案 0 :(得分:1)
您尝试使用"@JsonProperty(accessToken)"
。但是您的json包含access_token
。怎么运行的?
尝试使用此类:
public class Token {
@JsonProperty("access_token")
String accessToken;
@JsonProperty("token_type")
String tokenType;
int expiresIn;
String grantType;
//getter setter
}
答案 1 :(得分:0)
您的设置器与JSON密钥不匹配。
要正确阅读,应将设置器更改为:
setAccess_token()
setToken_type()
...
但是说实话,这太丑了。
尝试遵循Java Bean名称约定,并使用@JsonProperty
自定义JSON密钥:
public class Token {
@JsonProperty("access_token")
String accessToken;
....
}