From e6dcad1e0774cb61c3ad17f0fd0c0a00c3e34970 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Wed, 22 Apr 2026 18:47:46 +0200 Subject: [PATCH] config(app): silence MustacheAutoConfiguration templates-dir warning jmustache on the classpath (for alert notification templates) triggers Spring Boot's MustacheAutoConfiguration, which warns about the missing classpath:/templates/ folder we don't use. Disable its check. Co-Authored-By: Claude Opus 4.7 (1M context) --- cameleer-server-app/src/main/resources/application.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cameleer-server-app/src/main/resources/application.yml b/cameleer-server-app/src/main/resources/application.yml index 2d3d8866..c4d8281c 100644 --- a/cameleer-server-app/src/main/resources/application.yml +++ b/cameleer-server-app/src/main/resources/application.yml @@ -18,6 +18,8 @@ spring: mvc: async: request-timeout: -1 + mustache: + check-template-location: false jackson: serialization: write-dates-as-timestamps: false