Document workaround for conflicting Thymeleaf dependency (#3291)

Fixes gh-3290
This commit is contained in:
Stephan Windmüller
2018-11-26 22:19:42 +01:00
committed by Spencer Gibb
parent aa757592b6
commit 151fad898b

View File

@@ -335,6 +335,16 @@ This section describes how to set up a Eureka server.
To include Eureka Server in your project, use the starter with a group ID of `org.springframework.cloud` and an artifact ID of `spring-cloud-starter-netflix-eureka-server`.
See the http://projects.spring.io/spring-cloud/[Spring Cloud Project page] for details on setting up your build system with the current Spring Cloud Release Train.
NOTE: If your project already uses Thymeleaf as its template engine, the Freemarker templates of the Eureka server may not be loaded correctly. In this case it is necessary to configure the template loader manually:
.application.yml
----
spring:
freemarker:
template-loader-path: classpath:/templates/
prefer-file-system-access: false
----
[[spring-cloud-running-eureka-server]]
=== How to Run a Eureka Server