Java - Spring Boot 2.0 WebFlux configuration for static resources
1 2 3 4 5 6 7 8 9 10 11 @Value("classpath:/static/index.html") private Resource indexHtml; @Bean RouterFunction<?> routerFunction() { ...
1 2 3 4 5 6 7 8 9 10 11 @Value("classpath:/static/index.html") private Resource indexHtml; @Bean RouterFunction<?> routerFunction() { ...
1 2 3 4 5 6 7 try (final CSVReader reader = new CSVReader(new BufferedReader(new InputStreamReader(inputStream)))) { String[] line = null; while ((li...
http://www.baeldung.com/javax-validation http://andreinc.net/2017/10/02/writing-an-unified-validation-mechanism-for-rest-apis-using-spring-boot-and-jsr-380/ ...
Good explanation on ForkJoinPool in Java http://www.baeldung.com/java-fork-join
LOGGERS: loggers are responsible for capturing events and passing them to the appropriate appender. APPENDERS: also known as handlers, appenders are responsi...