package com.cloudhandson.vpdbackoffice.config; import java.time.Clock; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration @EnableConfigurationProperties({ BackofficeProperties.class, CatalogProperties.class, MaskingProperties.class, McpProperties.class, ProductProperties.class, SecuritySqlScriptProperties.class }) public class AppConfig { @Bean Clock clock() { return Clock.systemUTC(); } }