A Mini Project on JDBC Operation

In this article on A Mini Project on JDBC Operation, the use of HDBC API in Java is explained through an application. To begin with, create the table Exam. The following list provides the details of the columns in the exam table. user_id: varchar(100) password: varchar(100) user_type: varchar(100) incorrect_attempts: Number(2) lock_status: Number(2) user_name: varchar(100) The …

Understanding Map Collection in Java

This article on Understanding Map Collection in Java describes the java collection interface Map. Also, several examples are also included here. Map is one of the collection interfaces available in java.util package. In order to store key-value pairs, the Map interface is used. Also, the keys that the Map contains are unique. Some of the …

Spring Boot Practice Questions and Their Solutions

The following list provides some Spring Boot Practice Questions and Their Solutions. Application Based Spring Boot Practice Questions and Their Solutions Develop a simple Spring Boot application that displays ‘Welcome to programmingempire.com’. Demonstrate the use of Dependency Injection and auto-wired with Spring Boot. For this purpose, create an application involving the three classes – RegularFaculty, …

Spring Framework Practice Problems and Their Solutions

This article presents a few Spring Framework Practice Problems and Their Solutions. A Brief Tutorial on Spring Framework A Java application has a Model class ‘Art’. Further, this class has three attributes – art_id, art_title, and artist_name. You are required to create a Spring XML configuration file to create a bean entry for the Art …

Hibernate Practical Problems and Their Solutions

In this article, I will present some of the Hibernate Practical Problems and Their Solutions that will help you work with Hibernate. Basically, Hibernate is a Java Framework for ORM (Object Relational Modeling). In other words, Hibernate provides a mapping of Java classes to the database tables. The following list provides Hibernate Practical Problems and …