Skip to content

Instantly share code, notes, and snippets.

View sleclercq's full-sized avatar

Stephane Leclercq sleclercq

View GitHub Profile

Keybase proof

I hereby claim:

  • I am sleclercq on github.
  • I am sleclercq (https://keybase.io/sleclercq) on keybase.
  • I have a public key ASDedts2rxsOM9nQnCMf7uq5IkzngmVW5OhH_kQYAGmVowo

To claim this, I am signing this object:

# Calls ./mvnw if found, otherwise execute the original mvn
mvn-or-mvnw() {
if [ -x ./mvnw ]; then
echo "executing mvnw instead of mvn"
./mvnw "$@"
else
command mvn "$@"
fi
}
@sleclercq
sleclercq / springboot-1_3.txt
Created January 2, 2016 21:01
Spring boot 1.3 "relevant for me" release notes
Spring Boot 1.3
https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-1.3-Release-Notes
It’s recommended (although not required) that you rename any default log configuration files to use a -spring suffix. For example logback.xml would change to logback-spring.xml.
Stacktrace information is now never included when Spring MVC renders an error response. If you want Spring Boot 1.2 behavior set error.include-stacktrace to on-trace-param.
Spring Boot no longer honours @Order to manage ordering between auto-configuration classes, please use @AutoconfigureOrder instead. Note also that you can use @AutoconfigureBefore and @AutoconfigureAfter to specify the order against specific auto-configuration classes.