spring-boot
spring-boot copied to clipboard
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.
1) clone simple project: https://github.com/stepancheg/spring-boot-whitelabel project contains controller with function ``` @RequestMapping("/throw") @ResponseBody public String t() { throw new RuntimeException(); } ``` and project calls ``` System.setProperty("error.whitelabel.enabled", "false"); ``` before...
See https://github.com/brettwooldridge/HikariCP/issues/1096 for some background. We'll get a small performance boost in `getConnection()` and it'll also align us with the ideal usage of Hikari where the configuration is created and...