Comparison of open-source SSO implementations
Aerobase
Keycloak
WSO2 Identity Server
Gluu
CAS
OpenAM
Shibboleth IdP
OpenID Connect/OAuth support
yes
yes
yes
yes
yes
yes
third-party
Multi-factor...
Monday, 8 February 2021
Saturday, 7 December 2019
Thread Pool-Executor Service
December 07, 2019 / with 6 comments /
Implementing Executor Service in Java
When you want to get the data from the various services and make the service calls concurrently.
ExecutorService executors = Executors.newFixedThreadPool(2); //creats the thread pool of size 2
...
Monday, 22 July 2019
Sort HashMap By Keys
July 22, 2019 / with No comments /
Sorting HashMap by Keys using TreeMap and Comparator
import java.util.Comparator;import java.util.HashMap;import java.util.Map;import java.util.TreeMap;import com.kanth.bo.Employee;public class HashMapSortKeys...
Sort HashMap By Values
July 22, 2019 / with No comments /
Sort the HashMap by Values using comperator and Entry Object
import java.util.ArrayList;import java.util.Collections;import java.util.Comparator;import java.util.HashMap;import java.util.LinkedHashMap;import java.util.List;import...
Thursday, 13 June 2019
Stream API
June 13, 2019 / with No comments /
Java 8 Stream API Basic Examples.
Let us understand the few ways where we can use java 8 streams to solve the problems.
github link: https://github.com/RamakanthB/Java8Lamda-Streams
import java.util.Arrays;
import...
Friday, 9 November 2018
Joining the strings in java 8
November 09, 2018 / with 5 comments /
Everyone will experience the scenario where we need to join the strings in java .
These are the few ways we can do String concatenation in java 8.
Lets say we have 5 strings we want to make it 1 string with ',' separator .
String finalval = String.join(",", "First",...
Wednesday, 24 October 2018
Singleton Design Pattern in Java
October 24, 2018 / with No comments /
singleton is a way to restrict only one object per a class
There are multiple ways of creating a singleton object
1) eager initialized singleton
public class MySingelton1 {
private final static ...
Subscribe to:
Posts (Atom)