我有一个带有@XmlRootElement
注释的模型类。我想知道如何在函数中接收它作为响应。
我的模型课:
@XmlRootElement
public class SurveyAnswers {
List<Long> Q_id;
Date date;
String SurveyType;
List<Answers> answers;
float versionid;
String mac;
String remarks;
// getter and setter here
}
我以前使用MultivaluedMap<String, String>
过所有基于字符串的响应,但这里接收的是不同的结构。