Top "Spring-jdbc" questions

Spring JDBC is a part of Data access layer provided by Spring.

Spring JDBC Template for calling Stored Procedures

What is the correct way to invoke stored procedures using modern day (circa 2012) Spring JDBC Template? Say, I have a …

java spring spring-jdbc jdbctemplate
Spring Boot default H2 jdbc connection (and H2 console)

I am simply trying to see the H2 database content for an embedded H2 database which spring-boot creates when I …

java spring spring-boot h2 spring-jdbc
Spring - @Transactional - What happens in background?

I want to know what actually happens when you annotate a method with @Transactional? Of course, I know that Spring …

java spring spring-aop spring-jdbc transactional
How to set up datasource with Spring for HikariCP?

Hi I'm trying to use HikariCP with Spring for connection pool. I'm using jdbcTempLate and JdbcdaoSupport. This is my spring …

spring jdbc spring-jdbc jdbctemplate hikaricp
Seeing the underlying SQL in the Spring JdbcTemplate?

I am learning about the wonders of JdbcTemplate and NamedParameterJdbcTemplate. I like what I see, but is there any easy …

sql jdbc spring-jdbc
how to query for a list<String> in jdbctemplate

I'm using springs jdbctemplate and running a query like below: SELECT COLNAME FROM TABLEA GROUP BY COLNAME There are no …

java jdbc jdbctemplate spring-jdbc
Spring JDBC Could not load JDBC driver class [oracle.jdbc.driver.OracleDriver]

I wonder if any one could help me with this. I encountered an issue when I tried writing code with …

spring oracle spring-jdbc
HSQL database user lacks privilege or object not found error

I am trying to use hsqldb-2.3.4 to connect from Spring applicastion. I created data base using the following details Type : …

java spring hsqldb spring-jdbc
How to do multiple inserts in database using spring JDBC Template batch?

I need to insert thousands of records in the database at one go. I am using spring JDBC template in …

spring-jdbc
Spring DAO vs Spring ORM vs Spring JDBC

I was going through data access technologies supported by Spring, and I noticed that it mentions multiple options and I …

spring spring-data spring-jdbc spring-orm