• 29 August

    Spring NamedParameterJdbcTemplate example

    In this post , we are going to see about Spring NamedParameterJdbcTemplate. In previous post, we have already seen Spring JdbcTemplate example. NamedParameterJdbcTemplate is used to pass named parameter instead of ? in case of JdbcTemplate. It makes code more readable and maintainable. Lets say you have 10 parameters and you have to use 10 ? […]

  • 28 August

    Spring JdbcTemplate example

    In this post, we are going to see Spring JdbcTemplate example. Spring jdbcTemplate is used to convenient way to connect to database and execute queries. It internally use JDBC code only, but provides you APIs , so you don’t have to write boiler plate code. You don’t have write much code before and after executing […]