diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/result/view/MustacheViewResolver.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/result/view/MustacheViewResolver.java index 3e7e440b040..7e4991d2f61 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/result/view/MustacheViewResolver.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/result/view/MustacheViewResolver.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 the original author or authors. + * Copyright 2012-2022 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -27,6 +27,7 @@ import org.springframework.web.reactive.result.view.ViewResolver; * Spring WebFlux {@link ViewResolver} for Mustache. * * @author Brian Clozel + * @author Marten Deinum * @since 2.0.0 */ public class MustacheViewResolver extends UrlBasedViewResolver { @@ -75,4 +76,9 @@ public class MustacheViewResolver extends UrlBasedViewResolver { return view; } + @Override + protected AbstractUrlBasedView instantiateView() { + return (getViewClass() == MustacheView.class) ? new MustacheView() : super.instantiateView(); + } + }