Wednesday, August 1, 2018

Design Pattern in Java



Design Pattern in Java
  • A design pattern are well proved solution for the specific problem.
  • Independent of programming language.
  • we can make our code more flexible, usable and maintainable.
  • well proved solution for solving specific task.
  • Best practices used by experienced object oriented software developers.
  • used during the analysis of SDLC.

  • These authors are collectively known as Gang of Four (GOF). According to these authors design patterns are primarily based on the following principles of object orientated design.
    • Program to an interface not an implementation
    • Favor object composition over inheritance

Advantage:

    • They are reusable in multiple projects.
    • provide the solution for helping the system architecture.
    • provides transparency to the application.
In core java mainly 3 types of design patterns are there.

  • Creational Design Pattern

    1. Factory Pattern
    2. Abstract Factory Pattern
    3. Singleton Pattern
    4. Prototype Pattern
    5. Builder Pattern.
  • Structural Design Pattern

    1. Adapter Pattern
    2. Bridge Pattern
    3. Composite Pattern
    4. Decorator Pattern
    5. Facade Pattern
    6. Flyweight Pattern 

  •  Behavioral Design Pattern


    1. Chain Of Responsibility Pattern
    2. Command Pattern
    3. Interpreter Pattern
    4. Iterator Pattern
    5. Mediator Pattern
    6. Memento Pattern
    7. Observer Pattern
    8. State Pattern
    9. Strategy Pattern
    10. Template Pattern
    11. Visitor Pattern
Creational Design Pattern:

concerned with the way of creating objects. 


Factor Method Pattern:


  • Defines an interface or abstract class for creating an object, but let sub classes decides which object to instantiate.
  • Factory method lets a class defer instantiation to sub classes.




Implementation:



  • Provide an interface for creating an object. Here don't consider the word interface as java interface. it simply means to provide a contract/method to create an object.
  • let the sub class decide what exact object to instantiate. This pattern involves inheritance.
  • also known as Virtual constructor.
Example :




Abstract Factory Design Pattern :

  • It works around a super factory which create other factories.
  • This is also called factory of factories.
  • Inteface is responsible for creating a factory of related objects without explicitly specifying their classes.
Example:





Singleton Pattern:


  • Ensure that a class has only one instance and provide a global point of access to it.




Implementation:


  • Make sure that there is one instance: restrict constructor , make constructor private and let the class manage its instance.
  • provide a global point of access , a static method to get the solo instance.
Why Hard?

  • Reflection
  • Serialization/ deserialization
  • clone
  • multi threaded access
  • multiple class loader
  • Garbage Collection
How to Fix?

  • Reflection: enums are used because java ensures internally that enum value is instantiated only once. Since java Enums are globally accessible, they can be used for singletons. Its only drawback is that it is not flexible i.e it does not allow lazy initialization.
  • Serialization/ deserialization - To overcome this issue, we have to implement method readResolve() 
  • clone() : override the clone() method and throw an exception that is CloneNotSupportedException.

Monday, July 30, 2018

Java interview questions

why String is immutable in java?


  1. String pool is possible because of string is immutable in java.In this way java runtime saves a lot of heap memory because different string variable can refer to the same string value in the string pool.Is string is not immutable then string interning is not possible.
  2. If string is not immutable then it would cause several security threat in the application.Database username and passwords are passed as String for database connection.since string is immutable , the value cannot be changed.
  3. since string is immutable, it is thread safe for multi threading, and a single instance can be shared across different threads. This avoid the use of synchronization of thread safety.
  4. since string is immutable , its hash code cached at the time of creation and it does not need to be calculate again.
How to create immutable class in java?

  1. Declare the class as final so that it can not be extended.
  2. Make all fields private so that direct access is not allowed.
  3. Don't provide setter methods to variable.
  4. Make all mutable fields final so that its value can be assigned once.
  5. Initialize all the fields using constructor performing deep copy.
  6. Perform cloning of object in the getter method to return a copy rather than returning the actual object reference.
What is singleton in java?

     A singleton class is a class that can have only single object. if you try to instantiate the singleton class the new variable also points to the same instance created.

To design a singleton class following things are required:
  1. Make constructor as private
  2. write a static method that can return type of object of the singleton class.


public class SingletonDemo {

public static void main(String[] args) {
// TODO Auto-generated method stub
Singleton x = Singleton.getInstance();
Singleton y = Singleton.getInstance();
Singleton z = Singleton.getInstance();
x.s = (x.s).toUpperCase();
System.out.println("Value of x" +x);
System.out.println("Value of y" +y);
System.out.println("Value of z" +z);
z.s = (z.s).toUpperCase();
System.out.println("String from x is " + x.s);
        System.out.println("String from y is " + y.s);
        System.out.println("String from z is " + z.s);

}

}
 class Singleton{
 
private static Singleton si;
 
public String s;
 
private Singleton() {
s= "Hello i am singleton";
 
}
 
public static Singleton getInstance() {
if(si == null) 
si = new Singleton();
return si;
}
 
}


How to prevent singleton from Reflection, serialization and cloning?

Reflection: it can cause to destroy the singleton property of singleton class. as shown below.

package codingdemo;

import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;

public class SingletonReflection {

public static void main(String[] args)  {
// TODO Auto-generated method stub
Single i1 = Single.getinstance();
Single i2 = null;
try {
Constructor[] con = Single.class.getDeclaredConstructors();
for(Constructor c :con) {
c.setAccessible(true);
i2 = (Single) c.newInstance();
break;
}
}catch(Exception e) {
e.printStackTrace();
}

System.out.println("Instance 1 -->"+i1);
System.out.println("Instance 2 -->"+i2);
}

}

class Single{
private static Single s = new Single();
private Single() {
}
public static Single getinstance() {
return s;
}
}


Resolution: To overcome this issue ENUM are used in java because java uses internally that enum value is declared at once.

Serialization: serialization cause the break of singleton property of singleton class.Serialization is used to convert the object into byte stream and save it into a file or send over a network. Then if you deserializ the object , it will creat a new instance, thus it breaks the singleton.

// Java code to explain effect of
// Serilization on singleton classes
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.ObjectInput;
import java.io.ObjectInputStream;
import java.io.ObjectOutput;
import java.io.ObjectOutputStream;
import java.io.Serializable;

class Singleton implements Serializable
{
    // public instance initialized when loading the class
    public static Singleton instance = new Singleton();
   
    private Singleton()
    {
        // private constructor
    }
}


public class GFG
{

    public static void main(String[] args)
    {
        try
        {
            Singleton instance1 = Singleton.instance;
            ObjectOutput out
                = new ObjectOutputStream(new FileOutputStream("file.text"));
            out.writeObject(instance1);
            out.close();
   
            // deserailize from file to object
            ObjectInput in
                = new ObjectInputStream(new FileInputStream("file.text"));
           
            Singleton instance2 = (Singleton) in.readObject();
            in.close();
   
            System.out.println("instance1 hashCode:- "
                                                 + instance1.hashCode());
            System.out.println("instance2 hashCode:- "
                                                 + instance2.hashCode());
        }
       
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
}

Resolution: To overcome ths issue we have to use readResolve() method.

// Java code to remove the effect of
// Serialization on singleton classes
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.ObjectInput;
import java.io.ObjectInputStream;
import java.io.ObjectOutput;
import java.io.ObjectOutputStream;
import java.io.Serializable;

class Singleton implements Serializable
{
    // public instance initialized when loading the class
    public static Singleton instance = new Singleton();
   
    private Singleton()
    {
        // private constructor
    }
   
    // implement readResolve method
    protected Object readResolve()
    {
        return instance;
    }
}

public class GFG
{

    public static void main(String[] args)
    {
        try
        {
            Singleton instance1 = Singleton.instance;
            ObjectOutput out
                = new ObjectOutputStream(new FileOutputStream("file.text"));
            out.writeObject(instance1);
            out.close();
       
            // deserailize from file to object
            ObjectInput in
                = new ObjectInputStream(new FileInputStream("file.text"));
            Singleton instance2 = (Singleton) in.readObject();
            in.close();
       
            System.out.println("instance1 hashCode:- "
                                           + instance1.hashCode());
            System.out.println("instance2 hashCode:- "
                                           + instance2.hashCode());
        }
       
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
}


Cloning: Cloning is a concept through which we can create a copy of an object.So by using this we can create a copy of an singleton object Hence, two instance is created of a singleton class.

package codingdemo;

public class SingletonCloningDemo {

public static void main(String[] args) throws CloneNotSupportedException {
// TODO Auto-generated method stub
SingleDemo obj1 = SingleDemo.getinstance();
SingleDemo obj2 = (SingleDemo) obj1.clone();

System.out.println("1st Instance"+obj1);
System.out.println("2nd Instance"+obj2);


}

}
class SingleDemo extends Superclass{

private static SingleDemo s = new SingleDemo();

private SingleDemo() {

}

public static SingleDemo getinstance() {
return s;
}

}

class Superclass implements Cloneable{

int i=10;

@Override
protected Object clone() throws CloneNotSupportedException {
// TODO Auto-generated method stub
return super.clone();
}


}

Resolution: To overcome this issue we have to override the clone method and throw an exception through clone method that is cloneNotSupported Exception. Now whenever user wants to clone the object it throws an exception.

class SingleDemo extends Superclass{

private static SingleDemo s = new SingleDemo();

private SingleDemo() {

}

public static SingleDemo getinstance() {
return s;
}

@Override
protected Object clone() throws CloneNotSupportedException {
// TODO Auto-generated method stub
throw new CloneNotSupportedException();
}



}



          Covarient return type of java: 

     Before JDK 5 , it was not possible to override the method by changing its return type.when we override the parent class method, the name , the argument and return type should be same. This is said to be invariant with respect to return type.
JDK 5 onwards, it is possible to have different return type for a overriding method for a child class, but child class return type should be sub type of parent's return type. Overriding methods become variant with respect to return type. This is the concept of covarient return type in java.


Different ways to create object in java?


  1. Using new keyword is the basic way to create object in java.
  2. If we know the name of the class and if it has a default constuctor , we can create an object by Class.forName . Actually it loads the class, to create an object we have to use new Instance method.
  3. whenever clone() is called , the JVM create a new object and copies all the content of previous object to the new one.
  4. whenever we serialize and then deserialize an object, the JVM will create a new object for the same.
  5. There is one newInstance() method in java.lang.reflect.Constuctor class , which can create an object.
Dynamic method Dispatch or run time polymorphism in java?

Method overriding is the way to in which java supports run time polymorphism. Dynamic method dispatch is the mechanism by which a call to an overriden methods is resolved in runtime, rather than compile time.

  • when an overriden method is called through a superclass reference, java determines which version of the method is executed based up on the type of object being created. This determination is done during runtime.
    • At run time, it depends on the type of object being refered to that determines which version of an overriden method will be executed.
Association, Composition and Aggregation in Java

Association is the relation between two separate classes which established through the objects. 
Association can be one to one, one to many, many to one, many to many.
  • it represents Has-A relationship
  • it is unidirectional association.

Shadowing of static function in Java

The derive class static functio is same as base class static function then the derive class static function shadows the base class static function.

Explain JDK, JRE and JVM?

JDK vs JRE vs JVM

JDKJREJVM
It stands for Java Development Kit.It stands for Java Runtime Environment.It stands for Java Virtual Machine.
It is the tool necessary to compile, document and package Java programs.JRE refers to a runtime environment in which java bytecode can be executed.It is an abstract machine. It is a specification that provides run-time environment in which java bytecode can be executed.
Along with JRE, it includes an interpreter/loader, a compiler (javac), an archiver (jar), a documentation generator (javadoc) and other tools needed in Java development. In short, it contains JRE + development tools.It implements the JVM (Java Virtual Machine) and provides all the class libraries and other support files that JVM uses at runtime. So JRE is a software package that contains what is required to run a Java program. Basically, it’s an implementation of the JVM which physically exists.JVM follows three notations: Specification(document that describes the implementation of the Java virtual machine), Implementation(program that meets the requirements of JVM specification) and Runtime Instance (instance of JVM is created whenever you write a java command on the command prompt and run class).


Explain public static void main(String args[]).

  • public : Public is an access modifier, which is used to specify who can access this method. Public means that this Method will be accessible by any Class.
  • static : It is a keyword in java which identifies it is class based i.e it can be accessed without creating the instance of a Class.
  • void : It is the return type of the method. Void defines the method which will not return any value.
  • main: It is the name of the method which is searched by JVM as a starting point for an application with a particular signature only. It is the method where the main execution occurs.
  • String args[] : It is the parameter passed to the main method.

Why Java is platform independent?

Platform independent practically means “write once run anywhere”. Java is called so because of its byte codes which can run on any system irrespective of its underlying operating system.

Why java is not 100% Object-oriented?

Java is not 100% Object-oriented because it makes use of eight primitive datatypes such as boolean, byte, char, int, float, double, long, short which are not objects.

What are wrapper classes?

Wrapper classes converts the java primitives into the reference types (objects). Every primitive data type has a class dedicated to it. These are known as wrapper classes because they “wrap” the primitive data type into an object of that class. Refer to the below image which displays different primitive type, wrapper class and constructor argument. 
WrapperClass - Java Interview Questions - Edureka

What are constructors in Java?

In Java, constructor refers to a block of code which is used to initialize an object. It must have the same name as that of the class. Also, it has no return type and it is automatically called when an object is created.
There are two types of constructors:
  1. Default constructor
  2. Parameterized constructor

What is singleton class and how can we make a class singleton?

Singleton class is a class whose only one instance can be created at any given time, in one JVM. A class can be made singleton by making its constructor private.

What is the difference between Array list and vector?

Array ListVector
Array List is not synchronized.Vector is synchronized.
Array List is fast as it’s non-synchronized.Vector is slow as it is thread safe.
If an element is inserted into the Array List, it increases its Array size by 50%.Vector defaults to doubling size of its array.
Array List does not define the increment size.Vector defines the increment size.
Array List can only use Iterator for traversing an Array List.Except Hashtable, Vector is the only other class which uses both Enumeration and Iterator.


What is the difference between equals() and == ?

Equals() method is defined in Object class in Java and used for checking equality of two objects defined by business logic.“==” or equality operator in Java is a binary operator provided by Java programming language and used to compare primitives and objects. public boolean equals(Object o) is the method provided by the Object class. The default implementation uses == operator to compare two objects. For example: method can be overridden like String class. equals() method is used to compare the values of two objects.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
public class Equaltest {
public static void main(String[] args) {
String str1= new String(“ABCD”);
String str2= new String(“ABCD”);
if(Str1 == str2)
{
System.out.println("String 1 == String 2 is true");
}
else
{
System.out.println("String 1 == String 2 is false");
String Str3 = Str2;
if( Str2 == Str3)
{
System.out.println("String 2 == String 3 is true");
}
else
{
System.out.println("String 2 == String 3 is false");
}
if(Str1.equals(str2))
{
System.out.println("String 1 equals string 2 is true");
}
else
{
System.out.prinltn("String 1 equals string 2 is false");
}
}}

What are the differences between Heap and Stack Memory?

The major difference between Heap and Stack memory are:
FeaturesStackHeap
MemoryStack memory is used only by one thread of execution.Heap memory is used by all the parts of the application.
AccessStack memory can’t be accessed by other threads.Objects stored in the heap are globally accessible.
Memory ManagementFollows LIFO manner to free memory.Memory management is based on generation associated to each object.
LifetimeExists until the end of execution of the thread.Heap memory lives from the start till the end of application execution.
UsageStack memory only contains local primitive and reference variables to objects in heap space.Whenever an object is created, it’s always stored in the Heap space.


What is Polymorphism?


Polymorphism is briefly described as “one interface, many implementations”. Polymorphism is a characteristic of being able to assign a different meaning or usage to something in different contexts – specifically, to allow an entity such as a variable, a function, or an object to have more than one form. There are two types of polymorphism:
  1. Compile time polymorphism
  2. Run time polymorphism

Compile time polymorphism is method overloading whereas Runtime time polymorphism is done using inheritance and interface.

What is runtime polymorphism or dynamic method dispatch?

In Java, runtime polymorphism or dynamic method dispatch is a process in which a call to an overridden method is resolved at runtime rather than at compile-time. In this process, an overridden method is called through the reference variable of a superclass. Let’s take a look at the example below to understand it better.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Car {
void run()
{
System.out.println(“car is running”);
}
}
class Audi extends Car {
void run()
{
System.out.prinltn(“Audi is running safely with 100km”);
}
public static void main(String args[])
{
Car b= new Audi();    //upcasting
b.run();
}
}


What is the difference between abstract classes and interfaces?

Abstract ClassInterfaces
An abstract class can provide complete, default code and/or just the details that have to be overridden.An interface cannot provide any code at all,just the signature.
In case of abstract class, a class may extend only one abstract class.A Class may implement several interfaces.
An abstract class can have non-abstract methods.All methods of an Interface are abstract.
An abstract class can have instance variables.An Interface cannot have instance variables
An abstract class can have any visibility: public, private, protected.An Interface visibility must be public (or) none.
If we add a new method to an abstract class then we have the option of providing default implementation and therefore all the existing code might work properlyIf we add a new method to an Interface then we have to track down all the implementations of the interface and define implementation for the new method
An abstract class can contain constructorsAn Interface cannot contain constructors
Abstract classes are fastInterfaces are slow as it requires extra indirection to find corresponding method in the actual class


What is method overloading and method overriding?

Method Overloading :

  • In Method Overloading, Methods of the same class shares the same name but each method must have different number of parameters or parameters having different types and order.
  • Method Overloading is to “add” or “extend” more to method’s behavior.
  • It is a compile time polymorphism.
  • The methods must have different signature.
  • It may or may not need inheritance in Method Overloading.
Let’s take a look at the example below to understand it better.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Adder {
Static int add(int a, int b)
{
return a+b;
}
Static double add( double a, double b)
{
return a+b;
}
public static void main(String args[])
{
System.out.println(Adder.add(11,11));
System.out.println(Adder.add(12.3,12.6));
}}

Method Overriding:  

  • In Method Overriding, sub class have the same method with same name and exactly the same number and type of parameters and same return type as a super class.
  • Method Overriding is to “Change” existing behavior of method.
  • It is a run time polymorphism.
  • The methods must have same signature.
  • It always requires inheritance in Method Overriding.
Let’s take a look at the example below to understand it better.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Car {
void run(){
System.out.println(“car is running”);
}
Class Audi extends Car{
void run()
{
System.out.prinltn(“Audi is running safely with 100km”);
}
public static void main( String args[])
{
Car b=new Audi();
b.run();
}
}

Can you override a private or static method in Java?

You cannot override a private or static method in Java. If you create a similar method with same return type and same method arguments in child class then it will hide the super class method; this is known as method hiding. Similarly, you cannot override a private method in sub class because it’s not accessible there. What you can do is create another private method with the same name in the child class. Let’s take a look at the example below to understand it better.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Base {
private static void display() {
System.out.println("Static or class method from Base");
}
public void print() {
System.out.println("Non-static or instance method from Base");
}
class Derived extends Base {
private static void display() {
System.out.println("Static or class method from Derived");
}
public void print() {
System.out.println("Non-static or instance method from Derived");
}
public class test {
public static void main(String args[])
{
Base obj= new Derived();
obj1.display();
obj1.print();
}
}

What is multiple inheritance? Is it supported by Java?

MultipleInheritance - Java Interview Questions - EdurekaIf a child class inherits the property from multiple classes is known as multiple inheritance. Java does not allow to extend multiple classes.
The problem with multiple inheritance is that if multiple parent classes have a same method name, then at runtime it becomes difficult for the compiler to decide which method to execute from the child class.
Therefore, Java doesn’t support multiple inheritance. The problem is commonly referred as Diamond Problem.

What is association?

Association is a relationship where all object have their own lifecycle and there is no owner. Let’s take an example of Teacher and Student. Multiple students can associate with a single teacher and a single student can associate with multiple teachers but there is no ownership between the objects and both have their own lifecycle. These relationship can be one to one, One to many, many to one and many to many.

What is association?

Association is a relationship where all object have their own lifecycle and there is no owner. Let’s take an example of Teacher and Student. Multiple students can associate with a single teacher and a single student can associate with multiple teachers but there is no ownership between the objects and both have their own lifecycle. These relationship can be one to one, One to many, many to one and many to many.

What do you mean by aggregation?

Aggregation is a specialized form of Association where all object have their own lifecycle but there is ownership and child object can not belongs to another parent object. Let’s take an example of Department and teacher. A single teacher can not belongs to multiple departments, but if we delete the department teacher object will not destroy. 

What is composition in Java?

Composition is again specialized form of Aggregation and we can call this as a “death” relationship. It is a strong type of Aggregation. Child object dose not have their lifecycle and if parent object deletes all child object will also be deleted. Let’s take again an example of relationship between House and rooms. House can contain multiple rooms there is no independent life of room and any room can not belongs to two different house if we delete the house room will automatically delete.

What is a servlet?

  • Java Servlet is server side technologies to extend the capability of web servers by providing support for dynamic response and data persistence.
  • The javax.servlet and javax.servlet.http packages provide interfaces and classes for writing our own servlets.
  • All servlets must implement the javax.servlet.Servlet interface, which defines servlet lifecycle methods. When implementing a generic service, we can extend the GenericServlet class provided with the Java Servlet API. The HttpServlet class provides methods, such as doGet() and doPost(), for handling HTTP-specific services.
  • Most of the times, web applications are accessed using HTTP protocol and thats why we mostly extend HttpServlet class. Servlet API hierarchy is shown in below image.
Servlet - Java Interview Questions - Edureka

 What are the differences between Get and Post methods?

GetPost
Limited amount of data can be sent because data is sent in header.Large amount of data can be sent because data is sent in body.
 Not Secured because data is exposed in URL bar. Secured because data is not exposed in URL bar.
 Can be bookmarked Cannot be bookmarked
 Idempotent Non-Idempotent
 It is more efficient and used than Post It is less efficient and used


What is Request Dispatcher?

RequestDispatcher interface is used to forward the request to another resource that can be HTML, JSP or another servlet in same application. We can also use this to include the content of another resource to the response.
There are two methods defined in this interface:
1.void forward()
2.void include()

ForwardMethod - Java Interview Questions - Edureka

IncludeMethod - Java Interview Questions - Edureka


What are the differences between forward() method and sendRedirect() methods?

Forward() methodSendRedirect() method
forward() sends the same request to another resource.sendRedirect() method sends new request always because it uses the URL bar of the browser.
 forward() method works at server side. sendRedirect() method works at client side.
 forward() method works within the server only.sendRedirect() method works within and outside the server.


What is the life-cycle of a servlet?

There are 5 stages in the lifecycle of a servlet:LifeCycleServlet - Java Interview Questions - Edureka
  1. Servlet is loaded
  2. Servlet is instantiated
  3. Servlet is initialized
  4. Service the request
  5. Servlet is destroyed

How does cookies work in Servlets?

  • Cookies are text data sent by server to the client and it gets saved at the client local machine.
  • Servlet API provides cookies support through javax.servlet.http.Cookie class that implements Serializable and Cloneable interfaces.
  • HttpServletRequest getCookies() method is provided to get the array of Cookies from request, since there is no point of adding Cookie to request, there are no methods to set or add cookie to request.
  • Similarly HttpServletResponse addCookie(Cookie c) method is provided to attach cookie in response header, there are no getter methods for cookie.

What are the differences between ServletContext vs ServletConfig?

The difference between ServletContext and ServletConfig in Servlets JSP is in below tabular format.
ServletConfigServletContext
Servlet config object represent single servletIt represent whole web application running on particular JVM and common for all the servlet
Its like local parameter associated with particular servletIts like global parameter associated with whole application
It’s a name value pair defined inside the servlet section of web.xml file so it has servlet wide scopeServletContext has application wide scope so define outside of servlet tag in web.xml file.
getServletConfig() method is used to get the config objectgetServletContext() method is  used to get the context object.
for example shopping cart of a user is a specific to particular user so here we can use servlet configTo get the MIME type of a file or application session related information is stored using servlet context object.


What are the different methods of session management in servlets?

Session is a conversational state between client and server and it can consists of multiple request and response between client and server. Since HTTP and Web Server both are stateless, the only way to maintain a session is when some unique information about the session (session id) is passed between server and client in every request and response.
Some of the common ways of session management in servlets are:
  1. User Authentication
  2. HTML Hidden Field
  3. Cookies
  4. URL Rewriting
  5. Session Management API

SessionManagement - Java Interview Questions - Edureka


What is JDBC Driver?

JDBC Driver is a software component that enables java application to interact with the database. There are 4 types of JDBC drivers:
  1. JDBC-ODBC bridge driver
  2. Native-API driver (partially java driver)
  3. Network Protocol driver (fully java driver)
  4. Thin driver (fully java driver)

What are the steps to connect to a database in java?

  • Registering the driver class
  • Creating connection
  • Creating statement
  • Executing queries
  • Closing connection

What are the JDBC API components?

The java.sql package contains interfaces and classes for JDBC API.

Interfaces:

  • Connection
  • Statement
  • PreparedStatement
  • ResultSet
  • ResultSetMetaData
  • DatabaseMetaData
  • CallableStatement etc.

Classes:

  • DriverManager
  • Blob
  • Clob
  • Types
  • SQLException etc.

What is the role of JDBC DriverManager class?

The DriverManager class manages the registered drivers. It can be used to register and unregister drivers. It provides factory method that returns the instance of Connection.

 What is JDBC Connection interface?

The Connection interface maintains a session with the database. It can be used for transaction management. It provides factory methods that returns the instance of Statement, PreparedStatement, CallableStatement and DatabaseMetaData.

ConnectionInterface - Java Interview Questions - Edureka


What is the purpose of JDBC ResultSet interface?

The ResultSet object represents a row of a table. It can be used to change the cursor pointer and get the information from the database.

What is JDBC ResultSetMetaData interface?

The ResultSetMetaData interface returns the information of table such as total number of columns, column name, column type etc.

What is JDBC DatabaseMetaData interface?

The DatabaseMetaData interface returns the information of the database such as username, driver name, driver version, number of tables, number of views etc.

What do you mean by batch processing in JDBC?

Batch processing helps you to group related SQL statements into a batch and execute them instead of executing a single query. By using batch processing technique in JDBC, you can execute multiple queries which makes the performance faster.

What is the difference between execute, executeQuery, executeUpdate?

Statement execute(String query) is used to execute any SQL query and it returns TRUE if the result is an ResultSet such as running Select queries. The output is FALSE when there is no ResultSet object such as running Insert or Update queries. We can use getResultSet() to get the ResultSet and getUpdateCount() method to retrieve the update count.
Statement executeQuery(String query) is used to execute Select queries and returns the ResultSet. ResultSet returned is never null even if there are no records matching the query. When executing select queries we should use executeQuery method so that if someone tries to execute insert/update statement it will throw java.sql.SQLException with message “executeQuery method can not be used for update”.
Statement executeUpdate(String query) is used to execute Insert/Update/Delete (DML) statements or DDL statements that returns nothing. The output is int and equals to the row count for SQL Data Manipulation Language (DML) statements. For DDL statements, the output is 0.
You should use execute() method only when you are not sure about the type of statement else use executeQuery or executeUpdate method.

What is a Spring?

Wikipedia defines the Spring framework as “an application framework and inversion of control container for the Java platform. The framework’s core features can be used by any Java application, but there are extensions for building web applications on top of the Java EE platform.” Spring is essentially a lightweight, integrated framework that can be used for developing enterprise applications in java.

Name the different modules of the Spring framework.

Some of the important Spring Framework modules are:
  • Spring Context – for dependency injection.
  • Spring AOP – for aspect oriented programming.
  • Spring DAO – for database operations using DAO pattern
  • Spring JDBC – for JDBC and DataSource support.
  • Spring ORM – for ORM tools support such as Hibernate
  • Spring Web Module – for creating web applications.
  • Spring MVC – Model-View-Controller implementation for creating web applications, web services etc.

SpringFramework - Java Interview Questions - Edureka

List some of the important annotations in annotation-based Spring configuration.

The important annotations are:
  • @Required
  • @Autowired
  • @Qualifier
  • @Resource
  • @PostConstruct
  • @PreDestroy

 Explain Bean in Spring and List the different Scopes of Spring bean.

Beans are objects that form the backbone of a Spring application. They are managed by the Spring IoC container. In other words, a bean is an object that is instantiated, assembled, and managed by a Spring IoC container.
There are five Scopes defined in Spring beans.
SpringBean - Java Interview Questions - Edureka
  • Singleton: Only one instance of the bean will be created for each container. This is the default scope for the spring beans. While using this scope, make sure spring bean doesn’t have shared instance variables otherwise it might lead to data inconsistency issues because it’s not thread-safe.
  • Prototype: A new instance will be created every time the bean is requested.
  • Request: This is same as prototype scope, however it’s meant to be used for web applications. A new instance of the bean will be created for each HTTP request.
  • Session: A new bean will be created for each HTTP session by the container.
  • Global-session: This is used to create global session beans for Portlet applications.

Explain the role of DispatcherServlet and ContextLoaderListener.

DispatcherServlet is basically the front controller in the Spring MVC application as it loads the spring bean configuration file and initializes all the beans that have been configured. If annotations are enabled, it also scans the packages to configure any bean annotated with @Component, @Controller, @Repository or @Service annotations.
DispatcherServlet - Java Interview Questions - EdurekaContextLoaderListener, on the other hand, is the listener to start up and shut down the WebApplicationContext in Spring root. Some of its important functions includes tying up the lifecycle of Application Context to the lifecycle of the ServletContext and automating the creation of ApplicationContext.

ContextLoader - Java Interview Questions - Edureka



What is autowiring in Spring? What are the autowiring modes?

Autowiring enables the programmer to inject the bean automatically. We don’t need to write explicit injection logic. Let’s see the code to inject bean using dependency injection.
  1. <bean id=“emp” class=“com.javatpoint.Employee” autowire=“byName” />  
The autowiring modes are given below:
No.ModeDescription
 1) no this is the default mode, it means autowiring is not enabled.
 2) byName Injects the bean based on the property name. It uses setter method.
 3) byType Injects the bean based on the property type. It uses setter method.
 4) constructor It injects the bean using constructor

How to handle exceptions in Spring MVC Framework?

Spring MVC Framework provides following ways to help us achieving robust exception handling.

Controller Based:

We can define exception handler methods in our controller classes. All we need is to annotate these methods with @ExceptionHandler annotation.

Global Exception Handler:

Exception Handling is a cross-cutting concern and Spring provides @ControllerAdvice annotation that we can use with any class to define our global exception handler.

HandlerExceptionResolver implementation: 

For generic exceptions, most of the times we serve static pages. Spring Framework provides HandlerExceptionResolver interface that we can implement to create global exception handler. The reason behind this additional way to define global exception handler is that Spring framework also provides default implementation classes that we can define in our spring bean configuration file to get spring framework exception handling benefits.

What are the differences between constructor injection and setter injection?

No.Constructor InjectionSetter Injection
 1) No Partial Injection Partial Injection
 2) Desn’t override the setter property Overrides the constructor property if both are defined.
 3)Creates new instance if any modification occursDoesn’t create new instance if you change the property value
 4)  Better for too many properties Better for few properties.

What are some of the important Spring annotations which you have used?

Some of the Spring annotations that I have used in my project are:
@Controller – for controller classes in Spring MVC project.
@RequestMapping – for configuring URI mapping in controller handler methods. This is a very important annotation, so you should go through Spring MVC RequestMapping Annotation Examples
@ResponseBody – for sending Object as response, usually for sending XML or JSON data as response.
@PathVariable – for mapping dynamic values from the URI to handler method arguments.
@Autowired – for autowiring dependencies in spring beans.
@Qualifier – with @Autowired annotation to avoid confusion when multiple instances of bean type is present.
@Service – for service classes.
@Scope – for configuring scope of the spring bean.
@Configuration, @ComponentScan and @Bean – for java based configurations.
AspectJ annotations for configuring aspects and advices, @Aspect, @Before, @After, @Around, @Pointcut etc.

How to integrate Spring and Hibernate Frameworks?

We can use Spring ORM module to integrate Spring and Hibernate frameworks, if you are using Hibernate 3+ where SessionFactory provides current session, then you should avoid using HibernateTemplate or HibernateDaoSupport classes and better to use DAO pattern with dependency injection for the integration.
Also Spring ORM provides support for using Spring declarative transaction management, so you should utilize that rather than going for hibernate boiler-plate code for transaction management.

What is Hibernate Framework?

Object-relational mapping or ORM is the programming technique to map application domain model objects to the relational database tables. Hibernate is java based ORM tool that provides framework for mapping application domain objects to the relational database tables and vice versa.
Hibernate provides reference implementation of Java Persistence API, that makes it a great choice as ORM tool with benefits of loose coupling. We can use Hibernate persistence API for CRUD operations. Hibernate framework provide option to map plain old java objects to traditional database tables with the use of JPA annotations as well as XML based configuration.
Similarly hibernate configurations are flexible and can be done from XML configuration file as well as programmatically.

What are the important benefits of using Hibernate Framework?

Some of the important benefits of using hibernate framework are:
  1. Hibernate eliminates all the boiler-plate code that comes with JDBC and takes care of managing resources, so we can focus on business logic.
  2. Hibernate framework provides support for XML as well as JPA annotations, that makes our code implementation independent.
  3. Hibernate provides a powerful query language (HQL) that is similar to SQL. However, HQL is fully object-oriented and understands concepts like inheritance, polymorphism and association.
  4. Hibernate is an open source project from Red Hat Community and used worldwide. This makes it a better choice than others because learning curve is small and there are tons of online documentations and help is easily available in forums.
  5. Hibernate is easy to integrate with other Java EE frameworks, it’s so popular that Spring Framework provides built-in support for integrating hibernate with Spring applications.
  6. Hibernate supports lazy initialization using proxy objects and perform actual database queries only when it’s required.
  7. Hibernate cache helps us in getting better performance.
  8. For database vendor specific feature, hibernate is suitable because we can also execute native sql queries.

Explain Hibernate architecture?

HibernateArchitecture - Java Interview Questions - Edureka



What are the differences between get and load methods?

The differences between get() and load() methods are given below.
No.get()load()
 1) Returns null if object is not found.Throws ObjectNotFoundException if object is not found.
 2) get() method always hit the database. load() method doesn’t hit the database.
 3) It returns real object not proxy. It returns proxy object.
 4)It should be used if you are not sure about the existence of instance.It should be used if you are sure that instance exists.

What are the advantages of Hibernate over JDBC?

Some of the important advantages of Hibernate framework over JDBC are:
  1. Hibernate removes a lot of boiler-plate code that comes with JDBC API, the code looks more cleaner and readable.
  2. Hibernate supports inheritance, associations and collections. These features are not present with JDBC API.
  3. Hibernate implicitly provides transaction management, in fact most of the queries can’t be executed outside transaction. In JDBC API, we need to write code for transaction management using commit and rollback. 
  4. JDBC API throws SQLException that is a checked exception, so we need to write a lot of try-catch block code. Most of the times it’s redundant in every JDBC call and used for transaction management. Hibernate wraps JDBC exceptions and throw JDBCException orHibernateException un-checked exception, so we don’t need to write code to handle it. Hibernate built-in transaction management removes the usage of try-catch blocks.
  5. Hibernate Query Language (HQL) is more object oriented and close to java programming language. For JDBC, we need to write native sql queries.
  6. Hibernate supports caching that is better for performance, JDBC queries are not cached hence performance is low.
  7. Hibernate provide option through which we can create database tables too, for JDBC tables must exist in the database.
  8. Hibernate configuration helps us in using JDBC like connection as well as JNDI DataSource for connection pool. This is very important feature in enterprise application and completely missing in JDBC API.
  1. Hibernate supports JPA annotations, so code is independent of implementation and easily replaceable with other ORM tools. JDBC code is very tightly coupled with the application.

What are the life-cycle methods for a jsp?

MethodDescription
 public void jspInit()It is invoked only once, same as init method of servlet.
public void _jspService(ServletRequest request,ServletResponse)throws ServletException,IOExceptionIt is invoked at each request, same as service() method of servlet.
 public void jspDestroy()It is invoked only once, same as destroy() method of servlet.

What are the JSP implicit objects?

JSP provides 9 implicit objects by default. They are as follows:
ObjectType
1) out JspWriter
2) request HttpServletRequest
3) response HttpServletResponse
4) config ServletConfig
5) session HttpSession
6) application ServletContext
7) pageContext PageContext
8) page Object
9) exception Throwable

What are the differences between include directive and include action?

include directiveinclude action
The include directive includes the content at page translation time.The include action includes the content at request time.
The include directive includes the original content of the page so page size increases at runtime.The include action doesn’t include the original content rather invokes the include() method of Vendor provided class.
 It’s better for static pages. It’s better for dynamic pages.


How to disable caching on back button of the browser?

<%response.setHeader(“Cache-Control”,”no-store”);response.setHeader(“Pragma”,”no-cache”);response.setHeader (“Expires”, “0”);                    //prevents caching at the proxy server%>   

What are the different tags provided in JSTL?

There are 5 type of JSTL tags.
  1. core tags
  2. sql tags
  3. xml tags
  4. internationalization tags
  5. functions tags

How to disable session in JSP?

  1. <%@ page session=“false” %>   

How to delete a Cookie in a JSP?

The following code explain how to delete a Cookie in a JSP :
1
2
3
4
5
6
7
8
9
10
11
Cookie mycook = new Cookie("name1","value1");
 
response.addCookie(mycook1);
 
Cookie killmycook = new Cookie("mycook1","value1");
 
killmycook . set MaxAge ( 0 );
 
killmycook . set Path ("/");
 
killmycook . addCookie ( killmycook 1 );

Explain the jspDestroy() method.

jspDestry() method is invoked from javax.servlet.jsp.JspPage interface whenever a JSP page is about to be destroyed. Servlets destroy methods can be easily overridden to perform cleanup, like when closing a database connection.

How is JSP better than Servlet technology?

JSP is a technology on the server’s side to make content generation simple. They are document centric, whereas servlets are programs. A Java server page can contain fragments of Java program, which execute and instantiate Java classes. However, they occur inside HTML template file. It provides the framework for development of a Web Application.

Why should we not configure JSP standard tags in web.xml?

We don’t need to configure JSP standard tags in web.xml because when container loads the web application and find TLD files, it automatically configures them to be used directly in the application JSP pages. We just need to include it in the JSP page using taglib directive.

What is difference between Error and Exception?

An error is an irrecoverable condition occurring at runtime. Such as OutOfMemory error. These JVM errors you can not repair them at runtime.Though error can be caught in catch block but the execution of application will come to a halt and is not recoverable.
While exceptions are conditions that occur because of bad input or human error etc. e.g. FileNotFoundException will be thrown if the specified file does not exist. Or a NullPointerException will take place if you try using a null reference. In most of the cases it is possible to recover from an exception (probably by giving user a feedback for entering proper values etc.

How can you handle Java exceptions?

There are five keywords used to handle exceptions in java: 
  1. try
  2. catch
  3. finally
  4. throw
  5. throws

What are the differences between Checked Exception and Unchecked Exception?

Checked Exception

  • The classes that extend Throwable class except RuntimeException and Error are known as checked exceptions. 
  • Checked exceptions are checked at compile-time.
  • Example: IOException, SQLException etc.

Unchecked Exception

  • The classes that extend RuntimeException are known as unchecked exceptions. 
  • Unchecked exceptions are not checked at compile-time.
  • Example: ArithmeticException, NullPointerException etc.

What purpose does the keywords final, finally, and finalize fulfill? 

Final:

Final is used to apply restrictions on class, method and variable. Final class can’t be inherited, final method can’t be overridden and final variable value can’t be changed. Let’s take a look at the example below to understand it better.
1
2
3
4
5
6
class FinalVarExample {
public static void main( String args[])
{
final int a=10;   // Final variable
a=50;             //Error as value can't be changed
}

Finally

Finally is used to place important code, it will be executed whether exception is handled or not. Let’s take a look at the example below to understand it better.
1
2
3
4
5
6
7
8
9
10
11
12
class FinallyExample {
public static void main(String args[]){
try {
int x=100;
}
catch(Exception e) {
System.out.println(e);
}
finally {
System.out.println("finally block is executing");}
}}
}

Finalize

Finalize is used to perform clean up processing just before object is garbage collected. Let’s take a look at the example below to understand it better.
1
2
3
4
5
6
7
8
9
10
11
12
13
class FinalizeExample {
public void finalize() {
System.out.println("Finalize is called");
}
public static void main(String args[])
{
FinalizeExample f1=new FinalizeExample();
FinalizeExample f2=new FinalizeExample();
f1= NULL;
f2=NULL;
System.gc();
}
}

 What are the differences between throw and throws? 

throw keywordthrows keyword
Throw is used to explicitly throw an exception.Throws is used to declare an exception.
Checked exceptions can not be propagated with throw only.Checked exception can be propagated with throws.
Throw is followed by an instance.Throws is followed by class.
Throw is used within the method.Throws is used with the method signature.
You cannot throw multiple exceptionYou can declare multiple exception e.g. public void method()throws IOException,SQLException.

What is exception hierarchy in java?

The hierarchy is as follows:
Throwable is a parent class of all Exception classes. There are two types of Exceptions: Checked exceptions and UncheckedExceptions or RunTimeExceptions. Both type of exceptions extends Exception class whereas errors are further classified into Virtual Machine error and Assertion error.
ExceptionHierarchy - Java Interview Questions - Edureka

 How to create a custom Exception?

To create you own exception extend the Exception class or any of its subclasses.
  • class New1Exception extends Exception { }               // this will create Checked Exception
  • class NewException extends IOExcpetion { }             // this will create Checked exception
  • class NewException extends NullPonterExcpetion { }  // this will create UnChecked exception

What are the important methods of Java Exception Class?

Exception and all of it’s subclasses doesn’t provide any specific methods and all of the methods are defined in the base class Throwable.
  1. String getMessage() – This method returns the message String of Throwable and the message can be provided while creating the exception through it’s constructor.
  2. String getLocalizedMessage() – This method is provided so that subclasses can override it to provide locale specific message to the calling program. Throwable class implementation of this method simply use getMessage() method to return the exception message.
  3. Synchronized Throwable getCause() – This method returns the cause of the exception or null id the cause is unknown.
  4. String toString() – This method returns the information about Throwable in String format, the returned String contains the name of Throwable class and localized message.
  5. void printStackTrace() – This method prints the stack trace information to the standard error stream, this method is overloaded and we can pass PrintStream or PrintWriter as argument to write the stack trace information to the file or stream.

What are the differences between processes and threads?

 ProcessThread
DefinitionAn executing instance of a program is called a process.A thread is a subset of the process.
CommunicationProcesses must use inter-process communication to communicate with sibling processes.Threads can directly communicate with other threads of its process.
ControlProcesses can only exercise control over child processes.Threads can exercise considerable control over threads of the same process.
ChangesAny change in the parent process does not affect child processes.Any change in the main thread may affect the behavior of the other threads of the process.
MemoryRun in separate memory spaces.Run in shared memory spaces.
Controlled byProcess is controlled by the operating system.Threads are controlled by programmer in a program.
DependenceProcesses are independent.Threads are dependent.

 What is a finally block? Is there a case when finally will not execute?

Finally block is a block which always execute a set of statements. It is always associated with a try block regardless of any exception that occurs or not. 
Yes, finally will not be executed if the program exits either by calling System.exit() or by causing a fatal error that causes the process to abort.

What is synchronization?

Synchronization refers to multi-threading. A synchronized block of code can be executed by only one thread at a time. As Java supports execution of multiple threads, two or more threads may access the same fields or objects. Synchronization is a process which keeps all concurrent threads in execution to be in sync. Synchronization avoids memory consistency errors caused due to inconsistent view of shared memory. When a method is declared as synchronized the thread holds the monitor for that method’s object. If another thread is executing the synchronized method the thread is blocked until that thread releases the monitor.
Synchronization - Java Interview Questions - Edureka

Can we write multiple catch blocks under single try block? 

Yes we can have multiple catch blocks under single try block but the approach should be from specific to general. Let’s understand this with a programmatic example.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public class Example {
public static void main(String args[]) {
try {
int a[]= new int[10];
a[10]= 10/0;
}
catch(ArithmeticException e)
{
System.out.println("Arithmetic exception in first catch block");
}
catch(ArrayIndexOutOfBoundsException e)
{
System.out.println("Array index out of bounds in second catch block");
}
catch(Exception e)
{
System.out.println("Any exception in third catch block");
}
}