Java Weekly, Issue 248 Here we go… 1. Spring and Java ===== >> Monitor and troubleshoot Java applications and services with Datadog Sponsored Optimize performance with end-to-end tracing and out-of-the-box support for popular Java frameworks, application servers, and databases. >> Java 11 Released [infoq.com] A major announcement — the title says it… Continue Reading java-weekly-248

Guide to Internationalization in Spring Boot 1. Overview In this quick tutorial, we’re going to take a look at how we can add internationalization to a Spring Boot application. 2. Maven Dependencies For development, we need the following dependency: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> <version>1.5.2.RELEASE</version> </dependency> The latest version of spring-boot-starter-thymeleaf can… Continue Reading spring-boot-internationalization