Skip to content

Instantly share code, notes, and snippets.

View tillmannheigel's full-sized avatar
🎯
Focusing

Tillmann Heigel tillmannheigel

🎯
Focusing
View GitHub Profile
@tillmannheigel
tillmannheigel / Application.java
Last active June 26, 2018 15:33
Minimal application.java file with static and dynamic header manipulation for Spring Cloud Gateway.
@SpringBootApplication
public class Application {
@Bean
public RouteLocator staticRoutes(RouteLocatorBuilder builder) {
return builder
.routes()
.route(defaultRoute())
.build();
}
@tillmannheigel
tillmannheigel / README-Template.md
Created May 23, 2018 06:56 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites