Spring Boot
- 15 July
Spring boot @ConfigurationProperties
In this tutorial, we are going to see about Spring boot @ConfigurationProperties annotation. Spring boot @ConfigurationProperties allows you to map properties values with java object easily. Let’s first see the normal mapping first. Let’s say you have properties file below. application.properties [crayon-673ef4c875dcc924484681/] You can access above property file as below. [crayon-673ef4c875dd4069086793/] So, you can use @Value […]
- 09 July
Spring boot starters
In this tutorial, we are going to see about Spring boot starters. This is part of Spring boot tutorial series. Dependency management is one of the critical tasks while working on any project. You want to create a new spring project with JPA capabilities. Do you know what dependencies you need to include? You might […]
- 06 August
Spring boot interview questions for 10 years experience
In this post, we will see top 15 Spring Boot interview questions with answers.If you want to read more about Spring boot, you can go through Spring boot tutorial. If you are looking for below queries then this post will help you as well. Spring boot interview questions for 3 years experience Spring boot interview […]
- 01 July
Spring Boot tutorial
Spring framework is very popular frameworks for developing various web and enterprise application. Spring has developed various projects over time and Spring Boot is one of them. In this tutorial, we will learn Spring boot tutorial with various examples. Before learning Spring Boot application, you must have some knowledge about XML and Java Configuration in Spring […]
- 15 May
Spring Boot AngularJS Example
In this post, we are going to see how to create Spring boot AngularJS example. We will use Spring boot 1.5.3 Release version, it comes with hibernate 5. We will create a Spring boot AngularJS application which will have AngularJS as user interface. It will provide user interface from which you can add, update or […]
- 13 May
Spring Boot Hibernate example
In this post, we are going to see how to create Spring boot hibernate example. We will use Spring boot 1.5.3 Release version, it comes with hibernate 5. We will create a Spring boot hibernate application which will have JSP as user interface. It will provide user interface from which you can add, update or […]
- 10 May
Spring Boot + Spring Security example
In this post, we will see how to create Spring boot + Spring Security example. Let’s see how Spring boot makes over life simpler.I am going to apply Spring Security on Spring Boot hello world example. Github Source code: Download Spring Boot + Spring Security example: Here are steps to create a Spring boot + […]
- 06 May
Spring Boot Hello world StandAlone application
In this post, we are going to create Spring Boot Hello world StandAlone application. We have already created Spring boot web hello world example. It is very easy to configure Spring standalone project using Spring boot. Github Source code: Download Project Structure: Step 1:  Create a simple java  project using maven in eclipse named "SpringBootHelloWorldStandaloneExample". Step […]
- 06 May
Print all beans loaded by Spring Boot
In this post, we will see how to print all the beans loaded by Spring boot. We have already created a sample spring boot hello world program using JSP. You must be wondering what beans have been loaded by Spring in background. Change SpringBootHelloWorldApplication.java as below: [crayon-673ef4c87d4c5859144425/] You just need to implement CommandLineRunner and get ApplicatationContext […]