Skip to content

Instantly share code, notes, and snippets.

View TYsewyn's full-sized avatar
👨‍💻
Heads down

Tim Ysewyn TYsewyn

👨‍💻
Heads down
View GitHub Profile
@TYsewyn
TYsewyn / index.html
Created January 27, 2018 15:46
Visualizing your Spring Integration Components & Flows
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Visualizing your Spring Integration Components &amp; Flows</title>
<script type="text/javascript" src="http://d3js.org/d3.v4.min.js"></script>
<script type="text/javascript" src="http://d3js.org/d3-selection-multi.v1.min.js"></script>
<style>
@TYsewyn
TYsewyn / AuthenticationManagerConfiguration.java
Created March 5, 2016 13:34
Possible fix for SEC-2998: Make it possible for AuthenticationManagerBuilder to expose its UserDetailsService in Spring Boot
@Order(Ordered.LOWEST_PRECEDENCE - 100)
private static class SpringBootAuthenticationConfigurerAdapter
extends GlobalAuthenticationConfigurerAdapter {
private final SecurityProperties securityProperties;
SpringBootAuthenticationConfigurerAdapter(SecurityProperties securityProperties) {
this.securityProperties = securityProperties;
}