когда вы нажимаете кнопку поиска, в моем html:
<form method="post">
<input type="number" name="numberProt">
<button type="submit">Найти</button>
</form>
возникает ошибка в моем @ Controller
@Controller
public class ViolationController {
@Autowired
private ViolationServiceImpl violationService;
@GetMapping("/violations")
public String viewViolations(Model model) {
List<Violation> listViolations = violationService.findAll();
model.addAttribute("listViolations", listViolations);
return "violations";
}
@PostMapping("filterProt")
public String filterViolation(Integer numberProt, Model model) {
Iterable<Violation> protocols;
if (numberProt != null) {
protocols = violationService.findByNumProtocol(numberProt);
} else {
protocols = violationService.findAll();
}
model.addAttribute(protocols);
return "/violations";
}
}
Я прошу вас Помогите. Произошла ошибка: решено [org.springframework.web.HttpRequestMethodNotSupportedException: метод запроса 'POST' не поддерживается]