Spring Jdbctemplate

https://docs.spring.io/spring/docs/current/spring-framework-reference/data-access.html working example: https://github.com/teachkoka/jdbctemplate application.property  student.db.driver = org.postgresql.Driver student.db.url = jdbc:postgresql://127.0.0.1:5432/b6 student.db.username = postgres student.db.password = abcd12345 Repository Class @Repository public class StudentRepository {          public static final String INSERT_STUDENT_QUERY […]