Untitled
unknown
plain_text
2 years ago
267 B
3
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...