Search (via text field and button) in Spring MVC, CrudRepository, Thymeleaf
问题 I want create a simple button to search, via methods of CrudRepository, and show records on the website. I'm a beginner, so it may seem too trivial to you, but I'm asking for advice nevertheless :) StudentRepository.java public interface StudentRepository extends CrudRepository<Student, Integer> { Iterable<Student> findBySurname(String surname); } StudentService.java public interface StudentService { Iterable<Student> listStudentsBySurname(String surname); } StudentServiceImpl.java @Service