InventoryModuleConfiguration.java
/*
* Copyright 2005-2025 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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.openwms.wms.app;
import io.micrometer.core.instrument.MeterRegistry;
import jakarta.servlet.Filter;
import org.ameba.annotation.EnableAspects;
import org.ameba.app.SpringProfiles;
import org.ameba.http.PermitAllCorsConfigurationSource;
import org.ameba.http.identity.EnableIdentityAwareness;
import org.ameba.i18n.AbstractSpringTranslator;
import org.ameba.i18n.Translator;
import org.ameba.system.NestedReloadableResourceBundleMessageSource;
import org.openwms.core.app.JSONConfiguration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryCustomizer;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.MessageSource;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.Profile;
import org.springframework.context.annotation.aspectj.EnableSpringConfigured;
import org.springframework.context.event.ContextStartedEvent;
import org.springframework.context.event.EventListener;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.retry.annotation.EnableRetry;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.web.client.RestTemplate;
import org.springframework.web.filter.CorsFilter;
import org.springframework.web.servlet.LocaleResolver;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.i18n.LocaleChangeInterceptor;
import org.springframework.web.servlet.i18n.SessionLocaleResolver;
import java.util.Locale;
import java.util.Properties;
import static org.ameba.LoggingCategories.BOOT;
/**
* A InventoryModuleConfiguration.
*
* @author Heiko Scherrer
*/
@Configuration
@EnableAsync
@EnableRetry
@EnableScheduling
@EnableConfigurationProperties
@EnableCaching
@EnableIdentityAwareness
@EnableSpringConfigured
@EnableAspectJAutoProxy(proxyTargetClass = true)
@EnableJpaAuditing
@EnableAspects(propagateRootCause = true)
@Import(JSONConfiguration.class)
public class InventoryModuleConfiguration implements WebMvcConfigurer {
private static final Logger BOOT_LOGGER = LoggerFactory.getLogger(BOOT);
@EventListener
public void onContextStarted(ContextStartedEvent cse) {
BOOT_LOGGER.info("<> Inventory Service Library registered");
}
public @Bean RestTemplate restTemplate(RestTemplateBuilder builder) {
return builder.build();
}
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(localeChangeInterceptor());
}
@Bean MeterRegistryCustomizer<MeterRegistry> metricsCommonTags(@Value("${spring.application.name}") String applicationName) {
return registry -> registry.config().commonTags("application", applicationName);
}
@Profile(SpringProfiles.DEVELOPMENT_PROFILE)
@Bean Filter corsFiler() {
return new CorsFilter(new PermitAllCorsConfigurationSource());
}
@Bean MessageSource messageSource() {
var messageSource = new NestedReloadableResourceBundleMessageSource();
messageSource.setBasenames(
"classpath*:/META-INF/i18n/inv/inv",
"classpath*:/META-INF/i18n/val",
"classpath*:/META-INF/i18n/prj-msg");
messageSource.setDefaultEncoding("UTF-8");
messageSource.setCommonMessages(new Properties());
return messageSource;
}
public @Bean LocaleResolver localeResolver() {
var slr = new SessionLocaleResolver();
slr.setDefaultLocale(Locale.US);
return slr;
}
public @Bean LocaleChangeInterceptor localeChangeInterceptor() {
var lci = new LocaleChangeInterceptor();
lci.setParamName("lang");
return lci;
}
public @Bean Translator translator(MessageSource messageSource) {
return new AbstractSpringTranslator() {
@Override
protected MessageSource getMessageSource() {
return messageSource;
}
};
}
}