Execute SQL queries in the style of Spring's JDBC Template - but without Spring :)
I really like to work with Spring's JdbcTemplate
, because it is easy to use and a nice
abstraction of the base JDBC API. But for projects which are not using Spring, adding the
spring-jdbc
artifact causes the addition of nearly the complete Spring core to the project.
To avoid this problem, jCRUD
shall be a dependency-less, small and easy to use alternative to Spring's great JdbcTemplate
.
This library is built on top of Java 11 and doesn't support older Java releases.