25 lines
620 B
Java
25 lines
620 B
Java
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,
|
|
GameScopeProperties.class,
|
|
MaskingProperties.class,
|
|
McpProperties.class,
|
|
ProductProperties.class,
|
|
SecuritySqlScriptProperties.class
|
|
})
|
|
public class AppConfig {
|
|
|
|
@Bean
|
|
Clock clock() {
|
|
return Clock.systemUTC();
|
|
}
|
|
}
|