Skip to content

Instantly share code, notes, and snippets.

View sumelio's full-sized avatar
:octocat:
I am learning Redux

Freddy ANdrés Lemus Barrera sumelio

:octocat:
I am learning Redux
View GitHub Profile
@sumelio
sumelio / FeignSSLUtils.java
Created June 3, 2019 12:06 — forked from kannangce/FeignSSLUtils.java
Feign client for 1 or 2-way TLS with self signed certificates when javax.net.ssl.keyStore / javax.net.ssl.trustStore cannot be overridden.
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.security.AccessController;
import java.security.KeyManagementException;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
@elarif
elarif / Main.java
Last active May 11, 2018 22:56
spring-integration-stdout
package test;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;