Page 5 | 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 5

Spring Framework - What is PropertyPlaceHolderConfigurer?

24 Apr, 2017

We will externalize the properties used in the application in a property file and will use PropertyPlaceHolderConfigurer to resolve the placeholder at application startup time.

Tags:

Spring Security - How to use Digest Authentication?

14 Mar, 2017

This authentication method makes use of a hashing algorithms to encrypt the password (called password hash) entered by the user before sending it to the server. This, obviously, makes it much safer than the basic authentication method, in which the user’s password travels in plain text (or base64 encoded) that can be easily read by whoever intercepts it.

Tags:

Spring Security - How to use Basic Authentication?

14 Mar, 2017

It’s simplest of all techniques and probably most used as well. You use login/password forms – it’s basic authentication only. You input your username and password and submit the form to server, and application identify you as a user – you are allowed to use the system – else you get error.

Tags:

Spring Boot - Spring Data JPA with embedded database

07 Mar, 2017

We will create a Restful web-services which will use JPA to persist the data in the embedded database(h2).

Tags:

Spring Boot - Restful webservices with Jersey

19 Feb, 2017

In this post, we will create Restful webservices with Jersey deployed on embedded Undertow server as a Spring Boot Application.

Tags:

Spring Boot - ApplicationRunner vs CommandLineRunner

17 Feb, 2017

Spring Boot provides two interfaces CommandLineRunner and ApplicationRunner to run specific piece of code when application is fully started. These interfaces get called just before run() on SpringApplication completes.

Tags: