Home  >  Blog  >   Java Spring

Java Spring Interview Questions

Rating: 4.8
  
 
64130

If you're looking for Spring Interview Questions & Answers for Experienced or Freshers, you are at the right place. There are a lot of opportunities from many reputed companies in the world. According to research, The average salary for Spring ranges from approximately $35,011 pa.

So, You still have an opportunity to move ahead in your career in the Spring certification guide. Mindmajix offers Advanced Spring Interview Questions 2024 that help you in cracking your interview & acquire a dream career as a Java Spring Developer.

We have categorized Java Spring Interview Questions into 3 levels they are:

Frequently asked Java Spring Interview Questions 

  1. What is Spring?
  2. Which are the Spring framework modules?
  3. What is the difference between Spring Framework Vs Node JS?
  4. Explain the web module?
  5. Explain the Spring MVC module?
  6. What are the different types of IoC (dependency injection)?
  7. What is Aspect?
  8. What is Joinpoint?
  9. What are the different types of AutoProxying?
  10. What is @RequestMapping annotation?
If you would like to enrich your career and become a professional in Java Spring, then enroll in: “Java Spring Training”  Course. This course will help you to achieve excellence in this domain.

Spring Interview Questions For Freshers

1. What is Spring?

Spring is an open-source development framework for Enterprise Java. The core features of the Spring Framework can be used in developing any Java application, but there are extensions for building web applications on top of the Java EE platform. Spring framework targets to make Java EE development easier to use and promote good programming practice by enabling a POJO-based programming model.

 [ Related Article: Spring Tutorial ]

2. What are the benefits of the Spring Framework?

The benefits of the Spring Framework are:

  1. Lightweight: Spring is lightweight when it comes to size and transparency. The basic version of the spring framework is around 2MB.
  2. Inversion of control (IOC): Loose coupling is achieved in Spring, with the Inversion of Control technique. The objects give their dependencies instead of creating or looking for dependent objects.
  3. Aspect-oriented (AOP): Spring supports Aspect-oriented programming and separates application business logic from system services.
  4. Container: Spring contains and manages the life cycle and configuration of application objects.
  5. MVC Framework: Spring’s web framework is a well-designed web MVC framework, which provides a great alternative to web frameworks.
  6. Transaction Management: Spring provides a consistent transaction management interface that can scale down to a local transaction and scale up to global transactions (JTA).
  7. Exception Handling: Spring provides a convenient API to translate technology-specific exceptions (thrown by JDBC, Hibernate, or JDO) into consistent, unchecked exceptions.

3. Which are the Spring framework modules?

The basic modules of the Spring framework are :

  1. Core module
  2. Bean module
  3. Context module
  4. Expression Language module
  5. JDBC module
  6. ORM module
  7. OXM module
  8. Java Messaging Service(JMS) module
  9. Transaction module
  10. Web module
  11. Web-Servlet module
  12. Web-Struts module
  13. Web-Portlet module.

Related Article: What is Bean in Java Spring

4. Explain the Core Container (Application context) module?

This is the basic Spring module, which provides the fundamental functionality of the Spring framework. BeanFactory is the heart of any spring-based application. Spring framework was built on the top of this module, which makes the Spring container.

5. What is the BeanFactory – BeanFactory implementation example?

A BeanFactory is an implementation of the factory pattern that applies Inversion of Control to separate the application’s configuration and dependencies from the actual application code.
The most commonly used BeanFactory implementation is the XmlBeanFactory class.

6. XMLBeanFactory?

The most useful one is org.springframework.beans.factory.xml.XmlBeanFactory, which loads its beans based on the definitions contained in an XML file. This container reads the configuration metadata from an XML file and uses it to create a fully configured system or application.

MindMajix Youtube Channel

7. Explain the AOP module?

The AOP module is used for developing aspects for our Spring-enabled application. Much of the support has been provided by the AOP Alliance in order to ensure the interoperability between Spring and other AOP frameworks. This module also introduces metadata programming to Spring.

8. Explain the JDBC abstraction and DAO module?

With the JDBC abstraction and DAO module, we can be sure that we keep up the database code clean and simple, and prevent problems that result from a failure to close database resources. It provides a layer of meaningful exceptions on top of the error messages given by several database servers. It also makes use of Spring’s AOP module to provide transaction management services for objects in a Spring application.

9. Explain the object/relational mapping integration module?

Spring also supports using an object/relational mapping (ORM) tool over straight JDBC by providing the ORM module. Spring provides support to tie into several popular ORM frameworks, including Hibernate, JDO, and iBATIS SQL Maps. Spring’s transaction management supports each of these ORM frameworks as well as JDBC.

10. What are the differences between the Spring Framework vs Node JS?

The differences between the Spring Framework vs Node JS are

Features
Spring Framework
node.js
Creation Date
September 2002
2009
Release Date
Apr-97
Sep-17
Modules/Extensions/Plugins
10 000
9 001
Difficulty level
Intermediate-Advanced Master
Advanced
Browser support
All of them
All of them
Documentation
API Documentation Forum Tutorials PDF eBook
API Documentation
Sync file manager
Good
Basic
Archive
No
Conditional
Operating system server
JVM Compatible Android iOS
Cross-platform

[ Related Article: Java EE vs Spring Framework ]

11. Explain the web module?

The Spring web module is built on the application context module, providing a context that is appropriate for web-based applications. This module also contains support for several web-oriented tasks such as transparently handling multipart requests for file uploads and programmatic binding of request parameters to your business objects. It also contains integration support with Jakarta Struts.

12. Explain the Spring MVC module?

MVC framework is provided by Spring for building web applications. Spring can easily be integrated with other MVC frameworks, but Spring’s MVC framework is a better choice since it uses IoC to provide for a clean separation of controller logic from business objects. With Spring MVC you can declaratively bind request parameters to your business objects.

[ Explore the differences between Spring Boot vs Spring MVC ]

Spring Interview Questions and Answers For Experienced

13. Spring configuration file?

The Spring configuration file is an XML file. This file contains the class information and describes how these classes are configured and introduced to each other.

14. What is the Spring IoC container?

The Spring IoC is responsible for creating the objects, managing them (with dependency injection (DI)), wiring them together, configuring them, as also managing their complete lifecycle.

15. What are the benefits of IOC?

IOC or dependency injection minimizes the amount of code in an application. It makes it easy to test applications since no singletons or JNDI lookup mechanisms are required in unit tests. Loose coupling is promoted with minimal effort and the least intrusive mechanism. IOC containers support eager instantiation and lazy loading of services.

16.  What are the common implementations of the ApplicationContext?

  • The FileSystemXmlApplicationContext container loads the definitions of the beans from an XML file. The full path of the XML bean configuration file must be provided to the constructor.
  • The ClassPathXmlApplicationContext container also loads the definitions of the beans from an XML file. Here, you need to set CLASSPATH properly because this container will look bean configuration XML file in CLASSPATH.
  • The WebXmlApplicationContext container loads the XML file with definitions of all beans from within a web application.

17. What is the difference between Bean Factory and ApplicationContext?

Application contexts provide a means for resolving text messages, a generic way to load file resources (such as images), they can publish events to beans that are registered as listeners. In addition, operations on the container or beans in the container, which have to be handled in a programmatic fashion with a bean factory, can be handled declaratively in an application context. The application context implements MessageSource, an interface used to obtain localized messages, with the actual implementation being pluggable.

18. What does a Spring application look like?

  1. An interface that defines the functions.
  2. The implementation that contains properties, its setter and getter methods, functions, etc.,
  3. Spring AOP
  4. The Spring configuration XML file.
  5. A client program that uses the function

19.  What is Dependency Injection in Spring?

Dependency Injection, an aspect of Inversion of Control (IoC), is a general concept, and it can be expressed in many different ways. This concept says that you do not create your objects but describe how they should be created. You don’t directly connect your components and services together in code but describe which services are needed by which components in a configuration file. A container (the IOC container) is then responsible for hooking it all up.

20. What are the different types of IoC (dependency injection)?

  1. Constructor-based dependency injection: Constructor-based DI is accomplished when the container invokes a class constructor with a number of arguments, each representing a dependency on another class.
  2. Setter-based dependency injection: Setter-based DI is accomplished by the container calling setter methods on your beans after invoking a no-argument constructor or no-argument static factory method to instantiate your bean.

21. Which DI would you suggest Constructor-based or setter-based DI?

You can use both Constructor-based and Setter-based Dependency Injection. The best solution is to use constructor arguments for mandatory dependencies and setters for optional dependencies.

22. What are Spring beans?

Spring beans scope interview questions - The Spring Beans are Java Objects that form the backbone of a Spring application. They are instantiated, assembled, and managed by the Spring IoC container. These beans are created with the configuration metadata that is supplied to the container, for example, in the form of XML definitions.

Beans defined in the spring framework are singleton beans. There is an attribute in the bean tag named “singleton” if specified true then the bean becomes singleton and if set to false then the bean becomes a prototype bean. By default, it is set to true. So, all the beans in the spring framework are by default singleton beans.

23. What does a Spring Bean definition contain?

A Spring Bean definition contains all configuration metadata that is needed for the container to know how to create a bean, its lifecycle details, and its dependencies.

24. How do you provide configuration metadata to the Spring Container?

There are three important methods to provide configuration metadata to the Spring Container:

  1. XML-based configuration file.
  2. Annotation-based configuration
  3. Java-based configuration

25. How do you define the scope of a bean?

When defining an in Spring, we can also declare a scope for the bean. It can be defined through the scope attribute in the bean definition. For example, when Spring has to produce a new bean instance each time one is needed, the bean’s scope attribute to be a prototype. On the other hand, when the same instance of a bean must be returned by Spring every time it is needed, the bean scope attribute must be set to a singleton.

26. Explain the bean scopes supported by Spring?

There are five scopes provided by the Spring Framework supports following five scopes:

  1. In singleton scope, Spring scopes the bean definition to a single instance per Spring IoC container.
  2. In prototype scope, a single bean definition has any number of object instances.
  3. In request scope, a bean is defined as an HTTP request. This scope is valid only in a web-aware Spring ApplicationContext.
  4. In session scope, a bean definition is scoped to an HTTP session. This scope is also valid only in a web-aware Spring ApplicationContext.
  5. In the global-session scope, a bean definition is scoped to a global HTTP session. This is also a case used in a web-aware Spring ApplicationContext.

The default scope of a Spring Bean is Singleton.

27. Are Singleton beans thread safe in Spring Framework?

No, singleton beans are not thread-safe in the Spring framework.

28. Explain the Bean lifecycle in the Spring framework?

  1. The spring container finds the bean’s definition from the XML file and instantiates the bean.
  2. Spring populates all of the properties as specified in the bean definition (DI).
  3. If the bean implementsBeanNameAware interface, spring passes the bean’s id to setBeanName()
  4. If Bean implementsBeanFactoryAware interface, spring passes the bean factory to setBeanFactory()
  5. If there are any beanBeanPostProcessors associated with the bean, Spring calls postProcesserBeforeInitialization()
  6. If the bean implementsIntializingBean, its afterPropertySet() method is called. If the bean has an init method declaration, the specified initialization method is called.
  7. If there are any BeanPostProcessors associated with the bean, their postProcessAfterInitialization() methods will be called.
  8. If the bean implementsDisposableBean, it will call the destroy().

29. Which are the important beans lifecycle methods? Can you override them?

There are two important bean lifecycle methods are:

  • The first one is set up which is called when the bean is loaded into the container. The second method is the teardown method which is called when the bean is unloaded from the container.
  • The bean tag has two important attributes (init-method and destroy-method) with which you can define your own custom initialization and destroy methods. There are also the corresponding annotations(@PostConstruct and @PreDestroy).

[ Related Article: Spring Boot Interview Questions and Answers ]

30. What are inner beans in Spring?

When a bean is only used as a property of another bean it can be declared as an inner bean. Spring’s XML-based configuration metadata provides the use of elements inside the or elements of a bean definition, in order to define the so-called inner bean. Inner beans are always anonymous and they are always scoped as prototypes.

31. How can you inject a Java Collection in Spring?

Spring offers the following types of collection configuration elements:

  1. The type is used for injecting a list of values, in the case that duplicates are allowed.
  2. The type is used for wiring a set of values but without any duplicates.
  3. The type is used to inject a collection of name-value pairs where the name and value can be of any type.
  4. The type can be used to inject a collection of name-value pairs where the name and value are both Strings.

32. What is bean wiring?

Wiring, or else bean wiring is the case when beans are combined together within the Spring container. When wiring beans, the Spring container needs to know what beans are needed and how the container should use dependency injection to tie them together.

33. What is bean auto wiring?

The Spring container is able to autowire relationships between collaborating beans. This means that it is possible to automatically let Spring resolve collaborators (other beans) for a bean by inspecting the contents of the BeanFactorywithout using and elements.

34. Explain different modes of auto wiring?

The autowiring functionality has five modes that can be used to instruct the Spring container to use autowiring for dependency injection:

  1. no: This is the default setting. An explicit bean reference should be used for wiring.
  2. byName: When auto-wiring byName, the Spring container looks at the properties of the beans on which the auto-wire attribute is set to byName in the XML configuration file. It then tries to match and wire its properties with the beans defined by the same names in the configuration file.
  3. byType: When autowiring by datatype, the Spring container looks at the properties of the beans on which auto-wire attribute is set to byType in the XML configuration file. It then tries to match and wire a property if its type matches with exactly one of the names of the bean in the configuration file. If more than one such beans exist, a fatal exception is thrown.
  4. constructor: This mode is similar to byType, but type applies to constructor arguments. If there is not exactly one bean of the constructor argument type in the container, a fatal error is raised.
  5. autodetect: Spring first tries to wire using auto-wire by the constructor, if it does not work, Spring tries to auto-wire by type.

35. Are there limitations with auto wiring?

Limitations of auto wiring are:

  1. Overriding: You can still specify dependencies using and settings that will always override auto wiring.
  2. Primitive data types: You cannot auto-wire simple properties such as primitives, Strings, and Classes.
  3. Confusing nature: Autowiring is less exact than explicit wiring, so if possible prefer using explicit wiring.

36. Can you inject null and empty string values in Spring?

Yes, you can.

37. What is Spring Java-Based Configuration? Give some annotation examples?

The java-based configuration option enables you to write most of your Spring configuration without XML but with the help of few Java-based annotations.

An example is a @Configuration annotation, which indicates that the class can be used by the Spring IoC container as a source of bean definitions. Another example is the@Bean annotated method that will return an object that should be registered as a bean in the Spring application context.

37. What is an Annotation-based container configuration?

An alternative to XML setups is provided by an annotation-based configuration that relies on the bytecode metadata for wiring up components instead of angle-bracket declarations. Instead of using XML to describe a bean wiring, the developer moves the configuration into the component class itself by using annotations on the relevant class, method, or field declaration.

38. How do you turn on annotation wiring?

Annotation wiring is not turned on in the Spring container by default. In order to use annotation-based wiring, we must enable it in our Spring configuration file by configuring the element.

39. What is @Required annotation?

This annotation simply indicates that the affected bean property must be populated at configuration time, through an explicit property value in a bean definition, or through auto wiring. The container throws BeanInitializationException if the affected bean property has not been populated.

40. What is @Autowired annotation?

The @Autowired annotation provides more fine-grained control over where and how auto wiring should be accomplished. It can be used to auto-wire bean on the setter method just like @Required annotation, on the constructor, on a property, or on methods with arbitrary names and/or multiple arguments.

41. What is @Qualifier annotation?

When there are more than one bean of the same type and only one is needed to be wired with a property, the@Qualifier annotation is used along with @Autowired annotation to remove the confusion by specifying which exact bean will be wired.

42. How can JDBC be used more efficiently in the Spring framework?

When using the Spring JDBC framework the burden of resource management and error handling is reduced. So developers only need to write the statements and queries to get the data to and from the database. JDBC can be used more efficiently with the help of a template class provided by the Spring framework, which is the JdbcTemplate

43. What is JdbcTemplate?

JdbcTemplate class provides many convenient methods for doing things such as converting database data into primitives or objects, executing prepared and callable statements, and providing custom database error handling.

44. What is Spring DAO support?

The Data Access Object (DAO) support in Spring is aimed at making it easy to work with data access technologies like JDBC, Hibernate, or JDO in a consistent way. This allows us to switch between the persistence technologies fairly easily and to code without worrying about catching exceptions that are specific to each technology.

45. What are the ways to access Hibernate by using Spring?

There are two ways to access Hibernate with Spring:

  1. Inversion of Control with a Hibernate Template and Callback.
  2. ExtendingHibernateDAOSupport and Applying an AOP Interceptor node.

46. What is ORM’s Spring support?

Spring supports the following ORM’s:

  1. Hibernate
  2. iBatis
  3. JPA (Java Persistence API)
  4. TopLink
  5. JDO (Java Data Objects)
  6. OJB.

47. How can we integrate Spring and Hibernate using HibernateDaoSupport?

Use Spring’s SessionFactory called LocalSessionFactory. The integration process is of 3 steps:

  1. Configure the Hibernate SessionFactory
  2. Extend a DAO Implementation fromHibernateDaoSupport
  3. Wire in Transaction Support with AOP.

Spring Transaction Management Interview Questions

48. What are the types of transaction management Spring support?

Spring supports two types of transaction management:

  1. Programmatic transaction management: This means that you have managed the transaction with the help of programming. That gives you extreme flexibility, but it is difficult to maintain.
  2. Declarative transaction management: This means you separate transaction management from the business code. You only use annotations or XML-based configuration to manage the transactions.

49.  What are the benefits of the Spring Framework’s transaction management?

  1. It provides a consistent programming model across different transaction APIs such as JTA, JDBC, Hibernate, JPA, and JDO.
  2. It provides a simpler API for programmatic transaction management than a number of complex transaction APIs such as JTA.
  3. It supports declarative transaction management.
  4. It integrates very well with Spring’s various data access abstractions.

50. Which Transaction management type is more preferable?

Most users of the Spring Framework choose declarative transaction management because it is the option with the least impact on application code, and hence is most consistent with the ideals of a non-invasive lightweight container. Declarative transaction management is preferable over programmatic transaction management though it is less flexible than programmatic transaction management, which allows you to control transactions through your code.

51. Explain AOP?

Aspect-oriented programming, or AOP, is a programming technique that allows programmers to modularize crosscutting concerns or behavior that cuts across the typical divisions of responsibility, such as logging and transaction management.

52. What is Aspect?

The core construct of AOP is the aspect, which encapsulates behaviors affecting multiple classes into reusable modules. It is a module that has a set of APIs providing cross-cutting requirements. For example, a logging module would be called the AOP aspect for logging. An application can have any number of aspects depending on the requirement. In Spring AOP, aspects are implemented using regular classes annotated with the @Aspect annotation (@AspectJ style).

53. What is the difference between concern and crosscutting concern in Spring AOP?

The Concern is the behavior we want to have in a module of an application. A Concern may be defined as functionality we want to implement.

The cross-cutting concern is a concern that is applicable throughout the application and it affects the entire application. For example, logging, security, and data transfer are the concerns that are needed in almost every module of an application, hence they are cross-cutting concerns.

54. What is Joinpoint?

The joinpoint represents a point in an application where we can plug in an AOP aspect. It is the actual place in the application where an action will be taken using the Spring AOP framework.

55. What is Advice?

The advice is the actual action that will be taken either before or after the method execution. This is an actual piece of code that is invoked during the program execution by the Spring AOP framework.
Spring aspects can work with five kinds of advice:

  1. before: Run advice before the method execution.
  2. after: Run advice after the method execution regardless of its outcome.
  3. after-returning: Run advice after the method execution only if the method completes successfully.
  4. after-throwing: Run advice after the method execution only if a method exits by throwing an exception.
  5. around: Run advice before and after the advised method is invoked.

56. What is Pointcut?

The pointcut is a set of one or more joinpoints where advice should be executed. You can specify pointcuts using expressions or patterns.

57. What is Introduction?

An Introduction allows us to add new methods or attributes to existing classes.

58. What is the Target object?

A target object is an object being advised by one or more aspects. It will always be a proxy object. It is also referred to as the advised object.

59. What is a Proxy?

 A proxy is an object that is created by applying advice to a target object. When you think of client objects the target object and the proxy object are the same.

60. What are the different types of AutoProxying?

The different types of AutoProxying are:

  1. BeanNameAutoProxyCreator
  2. DefaultAdvisorAutoProxyCreator
  3. Metadata auto proxying

61. What is Weaving? What are the different points where weaving can be applied?

Weaving is the process of linking aspects with other application types or objects to create an advised object. Weaving can be done at compile-time, at load time, or at runtime.

62.  Explain XML Schema-based aspect implementation?

In this implementation case, aspects are implemented using regular classes along with XML-based configuration.

63. Explain annotation-based (@AspectJ-based) aspect implementation?

This implementation case (@AspectJ-based implementation) refers to a style of declaring aspects as regular Java classes annotated with Java 5 annotations.

64. What is the Spring MVC framework?

Spring comes with a full-featured MVC framework for building web applications. Although Spring can easily be integrated with other MVC frameworks, such as Struts, Spring’s MVC framework uses IoC to provide a clean separation of controller logic from business objects. It also allows to declaratively bind request parameters to business objects.

65. What is DispatcherServlet?

The Spring Web MVC framework is designed around a DispatcherServlet that handles all the HTTP requests and responses.

66. What is WebApplicationContext?

The WebApplicationContext is an extension of the plain ApplicationContext that has some extra features necessary for web applications. It differs from a normal ApplicationContext in that it is capable of resolving themes, and that it knows which servlet it is associated with.

67. What is a Controller in the Spring MVC framework?

Controllers provide access to the application behavior that you typically define through a service interface. Controllers interpret user input and transform it into a model that is represented to the user by the view. Spring implements a controller in a very abstract way, which enables you to create a wide variety of controllers.

68. What is @Controller annotation?

The @Controller annotation indicates that a particular class serves the role of a controller. Spring does not require you to extend any controller base class or reference the Servlet API.

69. What is @RequestMapping annotation?

@RequestMapping annotation is used to map a URL to either an entire class or a particular handler method.

Join our newsletter
inbox

Stay updated with our newsletter, packed with Tutorials, Interview Questions, How-to's, Tips & Tricks, Latest Trends & Updates, and more ➤ Straight to your inbox!

Course Schedule
NameDates
Core Java TrainingMar 23 to Apr 07View Details
Core Java TrainingMar 26 to Apr 10View Details
Core Java TrainingMar 30 to Apr 14View Details
Core Java TrainingApr 02 to Apr 17View Details
Last updated: 03 Jan 2024
About Author

Ravindra Savaram is a Technical Lead at Mindmajix.com. His passion lies in writing articles on the most popular IT platforms including Machine learning, DevOps, Data Science, Artificial Intelligence, RPA, Deep Learning, and so on. You can stay up to date on all these technologies by following him on LinkedIn and Twitter.

read more
Recommended Courses

1 / 15