我在 java 中使用 Dozer 框架进行对象映射。
现在我因为以下问题而陷入困境:
以下是我的课程:
public class BaseQuestion
{
public String question = "";
public String answer = "";
/**
* Getter for question
*/
public String getQuestion()
{
return question;
}
/**
* @Setter for question
*/
public void setQuestion(String question)
{
this.question = question;
}
/**
* Getter for answer
*/
public String getAnswer()
{
return answer;
}
/**
* @Setter for answer
*/
public void setAnswer(String answer)
{
this.answer = answer;
}
}
public class QuestionsMap
{
Question[] question;
public void setQuestion(Question[] question)
{
this.question = question;
}
public Question[] getQuestion()
{
return this.question;
}
}
In the above classes I have to map QuestionsMap class with a HashMap as below:
Map<String,String> questionsMap=new HashMap<String,String>();
BaseQuestion[] question=QuestionsMap.getQuestion();
questionsMap.put(question[0].getQuestion(),question[0].getAnswer());
questionsMap.put(question[1].getQuestion(),question[1].getAnswer());
questionsMap.put(question[2].getQuestion(),question[2].getAnswer());
questionsMap.put(question[3].getQuestion(),question[3].getAnswer());
任何人都可以建议我如何使用推土机框架来实现它。
谢谢,
纳伦德拉