У меня есть метод c stati, который предназначен для чтения JSON и синтаксического анализа класса (указанного во время выполнения) с помощью ObjectMapper. Я хотел бы вернуть объект типа «N», но получаю сообщение об ошибке при использовании Generics.
Как я могу сделать следующий код sh этим?
public static <N, T extends AbstractRESTApplication> N GET_PAYLOAD( T app, String urlString, REQUEST_TYPE requestType) throws JsonProcessingException, MalformedURLException, IOException, NoSuchAlgorithmException, KeyManagementException {
HttpsURLConnection con = null;
try {
RSSFeedParser.disableCertificateValidation();
URL url = new URL(urlString);
con = (HttpsURLConnection) url.openConnection();
String encoding = Base64.getEncoder().encodeToString((app.getUser() + ":" + app.getPassword()).getBytes("UTF-8"));
con.setRequestProperty("Authorization", String.format("Basic %s", encoding));
//con.setDoOutput(true);//only used for writing to.
con.setDoInput(true);
con.setRequestProperty("Content-Type", "application/json; charset=UTF-8");
con.setRequestMethod(requestType.toString());
con.setRequestProperty("User-Agent", "Java client");
DataOutputStream wr = new DataOutputStream(con.getOutputStream());
// wr.write(val);
StringBuilder content;
try (BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()))) {
String line;
content = new StringBuilder();
while ((line = in.readLine()) != null) {
content.append(line);
content.append(System.lineSeparator());
}
System.out.println(Class.class.getName() + ".GET_PAYLOAD= " + content);
//Map Content to Class.
ObjectMapper om = new ObjectMapper();
return om.readValue(content.toString(),N);//Doesn't Like N type. How do i fix?
}
} finally {
con.disconnect();
}
}