SpringCloud 如何包括Eureka服务器
2023-11-22 11:26 更新
要将Eureka服务器包含在您的项目中,请使用启动器,其组ID为org.springframework.cloud
,工件ID为spring-cloud-starter-netflix-eureka-server
。有关使用当前Spring Cloud版本Train设置构建系统的详细信息,请参见Spring Cloud项目页面。
如果您的项目已经使用Thymeleaf作为模板引擎,则Eureka服务器的Freemarker模板可能无法正确加载。在这种情况下,必须手动配置模板加载器:
application.yml。
spring: freemarker: template-loader-path: classpath:/templates/ prefer-file-system-access: false
以上内容是否对您有帮助:
更多建议: