我正在使用Spring Boot应用程序,在通过Postman的GET请求到达“ / test / api”休息端点时,出现了以下错误:
com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException:无法识别的字段“ userName”(类com.example.MyPojo),未标记为可忽略(0个已知属性:])
我正在尝试使用的服务以以下格式产生响应。
@Getter
@Setter
public class MyResponse extends MyPojo {
int responseCode;
String responseMessage;
List<MyPojo> output;
}
public class MyPojo{
}
public class User extends MyPojo {
private String id;
@NotBlank
private String userName;
private String companyId;
}
我的控制器类看起来像下面的东西。
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.PropertyAccessor;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.http.*;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
import java.io.IOException;
@RestController
@RequestMapping("/test")
public class SampleRestController {
@GetMapping("/api")
public MyResponse testApi(){
RestTemplate restTemplate = new RestTemplate();
String url="http://<Domain>:8085/users/active";
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
HttpEntity<String> entity = new HttpEntity<String>("header",headers);
final ResponseEntity<String> responseEntity = restTemplate.exchange( url, HttpMethod.GET, entity, String.class );
MyResponse myResponse = null;
ObjectMapper mapper = new ObjectMapper();
mapper.setVisibility( PropertyAccessor.FIELD, JsonAutoDetect.Visibility.ANY);
mapper.enable( DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT);
try {
myResponse = mapper.readValue(responseEntity.getBody(), MyResponse.class);
} catch (IOException e) {
e.printStackTrace();
}
return myResponse;
}
}
[请指出我的错误,我无法弄清楚。任何帮助将不胜感激。
要在MyResponse中映射用户属性,您需要将模型更改为
@Getter
@Setter
@JsonIgnoreProperties(ignoreUnknown = true)
public class MyResponse extends MyPojo {
int responseCode;
String responseMessage;
List<User> output;
}
此外,如果当前未使用,则定义@Getter和@Setter注释。
@Getter
@Setter
public class User extends MyPojo {
private String id;
@NotBlank
private String userName;
private String companyId;
}