Angular - Proxy settings to avoid CORS
Create a proxy.config.json 1 2 3 4 5 6 { "/api": { "target": "http://localhost:8080", "secure": false } } run ng serve with a configuration file...
Create a proxy.config.json 1 2 3 4 5 6 { "/api": { "target": "http://localhost:8080", "secure": false } } run ng serve with a configuration file...
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