Spring and Hibernate Interview Questions

Here's a list of questions to help you prepare for a Spring and Hibernate interview. Spring MVC Interview Questions https://howtodoinjava.com/interview-questions/spring-mvc-interview-questions-with-answers/   Spring AOP Interview Questions https://www.dineshonjava.com/spring-aop-interview-questions-and-answers/   Spring REST Interview Questions https://www.dineshonjava.com/spring-rest-web-services-interview-questions-and-answers/   Spring Boot Interview Questions https://www.journaldev.com/8611/spring-boot-interview-questions   Hibernate Interview Questions https://www.journaldev.com/3633/hibernate-interview-questions-and-answers --- If you need to brush up on core Java, JSP and JDBC topics, see my post [...]

By |2018-04-03T10:13:37-04:00April 3, 2018|Hibernate, Java, Spring|Comments Off on Spring and Hibernate Interview Questions

How To View Hibernate SQL Parameter Values

When using Hibernate, if you log the Hibernate SQL statements, you will see this: Hibernate: insert into student (email, first_name, last_name, id) values (?, ?, ?, ?) However, for debugging your application, you want to see the actual parameter values in the Hibernate logs. Basically, you want to get rid of the question marks in the Hibernate logs. You can [...]

By |2016-07-05T18:27:50-04:00July 5, 2016|Hibernate, How-To, Java|Comments Off on How To View Hibernate SQL Parameter Values
Go to Top