Spring JDBC provides extraction over plain JDBC by providing various templates such jdbctemplate, named parameter template and better exception handling compared to plain JDBC.It makes mapping easier between a relational database and java beans with the help of different mapper classes. Also, there are cleaner ways to execute stored proc.
Following are some of the tutorials on spring jdbc.
Fetch Auto Generated Primary Key Value After Insert
Most of the time, the primary key is auto generated and once a row is inserted it is a common requirement to fetch auto generated primary key value after insert statement execution.So in this topic we will take a look into fetching that auto generated primary key once an insert statement is...
Read now➤
Working with Spring Boot JdbcTemplate
This is yet another post of using jdbctemplate to fetch records from DB.In this post we will see how we can perform different crud operations using jdbctemplate.We will be creating examples of how to create and read data from DB using spring jdbc provided jdbctemplate.We will...
Read now➤
Execute Stored Procedure in Spring Jdbc
Spring jdbc provides very simple approach to execute stored procedures using SimpleJdbcCall.In this post we will be dicussing about how to execute stored proc in spring spring jdbc using SimpleJdbcCall....
Read now➤