Untitled

Anonymous
plain_text
04/19/2023 6:26 AM
356 B
16
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...