Untitled
unknown
plain_text
3 years ago
267 B
8
Indexable
@RequestMapping(value = "/start-exam", method = RequestMethod.GET)
public String startExam(ModelMap model) {
List<Question> questions = questionService.getQuestionsFromExcelFormat();
model.addAttribute("questions", questions);
return "exam-page";
}
Editor is loading...