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