Skip to content

Instantly share code, notes, and snippets.

@linhvovn
Last active December 24, 2018 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linhvovn/2424c831ebea5a2e589c306431825c5f to your computer and use it in GitHub Desktop.
Save linhvovn/2424c831ebea5a2e589c306431825c5f to your computer and use it in GitHub Desktop.
Introduction to I18N in Spring WebFlux
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.1.RELEASE</version>
<relativePath/>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring5</artifactId>
</dependency>
</dependencies>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment