Page 6 | Welcome to my tech blog

I write posts on Java, Concurrency, Design patterns, Spring Boot, React and anything that I learn on technology.

Latest Posts - Page 6

Spring Boot - Changing and configuring default embedded server

16 Feb, 2017

Spring Boot supports Tomcat, Undetow and Jetty as embedded servers. Now, we will change and/ or configure the default embedded server and common properties to all the available servers.

Tags:

Spring Boot - A quickstart

16 Feb, 2017

We will create a simple Spring Boot application which will run on embedded Apache Tomcat.

Tags:

Spring Framework - Bean scopes

13 Feb, 2017

There are seven bean scopes Spring supports out of which five are only available if your ApplicationContext is web-aware. These are singleton, prototype, request, session, globalSession, application and websocket.

Tags:

Spring Framework - What is Import annotation?

12 Feb, 2017

Import annotation is equivalent to <import/> element in Spring XML configuration. It helps in splitting the single Java based configuration file into small, modular, maintainable and component based configuration.

Tags:

Spring Framework - What is Dependency Injection?

12 Feb, 2017

Dependency injection is a process in which objects define their dependencies i.e. other objects they require to work, through a constructor, setter methods, factory methods.

Tags:

Spring Framework - A Java configuration for Spring

09 Feb, 2017

Configuration annotation indicates that there is one or more bean methods and spring containers can process to generate bean definitions at runtime.

Tags: