From 91e64c52db33dc212ba765d8aa0ce5a08246f2bf Mon Sep 17 00:00:00 2001 From: Gabriel Roldan Date: Mon, 9 Sep 2024 19:07:47 -0300 Subject: [PATCH] Exclude FreeMarkerAutoConfiguration in wps and wcs services --- src/apps/geoserver/wcs/src/main/resources/bootstrap.yml | 1 + src/apps/geoserver/wps/src/main/resources/bootstrap.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/apps/geoserver/wcs/src/main/resources/bootstrap.yml b/src/apps/geoserver/wcs/src/main/resources/bootstrap.yml index 4105f9059..6ac8b9348 100644 --- a/src/apps/geoserver/wcs/src/main/resources/bootstrap.yml +++ b/src/apps/geoserver/wcs/src/main/resources/bootstrap.yml @@ -35,6 +35,7 @@ spring: - org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration - org.springframework.boot.actuate.autoconfigure.security.servlet.ManagementWebSecurityAutoConfiguration - org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration + - org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration # override default of true, this service does not use the registry (when eureka client is enabled) eureka.client.fetch-registry: false diff --git a/src/apps/geoserver/wps/src/main/resources/bootstrap.yml b/src/apps/geoserver/wps/src/main/resources/bootstrap.yml index 3250b7581..7ed6e7a8d 100644 --- a/src/apps/geoserver/wps/src/main/resources/bootstrap.yml +++ b/src/apps/geoserver/wps/src/main/resources/bootstrap.yml @@ -34,6 +34,8 @@ spring: - org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration - org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration - org.springframework.boot.actuate.autoconfigure.security.servlet.ManagementWebSecurityAutoConfiguration + - org.springframework.boot.autoconfigure.ldap.LdapAutoConfiguration + - org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration - org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration # override default of true, this service does not use the registry (when eureka client is enabled)