Class CommonModuleConfiguration

java.lang.Object
org.openwms.common.app.CommonModuleConfiguration
All Implemented Interfaces:
org.springframework.web.servlet.config.annotation.WebMvcConfigurer

@Configuration @RefreshScope @EnableAspects(propagateRootCause=true) @EnableAspectJAutoProxy(proxyTargetClass=true) @EnableCaching @EnableConfigurationProperties @EnableIdentityAwareness @EnableSpringConfigured @EnableJpaAuditing @EnableEnversRepositories @EnableJpaRepositories(basePackages="org.openwms", repositoryFactoryBeanClass=org.springframework.data.envers.repository.support.EnversRevisionRepositoryFactoryBean.class) @EntityScan(basePackages="org.openwms") @EnableMultiTenancy @EnableTransactionManagement @Import(org.openwms.core.app.JSONConfiguration.class) public class CommonModuleConfiguration extends Object implements org.springframework.web.servlet.config.annotation.WebMvcConfigurer
A CommonModuleConfiguration.
Author:
Heiko Scherrer
  • Constructor Summary Link icon

    Constructors
    Constructor
    Description
     
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    void
    addInterceptors(org.springframework.web.servlet.config.annotation.InterceptorRegistry registry)
     
    jakarta.servlet.Filter
     
    org.springframework.web.servlet.i18n.LocaleChangeInterceptor
     
    org.springframework.web.servlet.LocaleResolver
     
    org.springframework.context.MessageSource
     
    (package private) org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryCustomizer<io.micrometer.core.instrument.MeterRegistry>
    metricsCommonTags(String applicationName)
     
    org.springframework.boot.web.servlet.FilterRegistrationBean<org.ameba.http.RequestIDFilter>
    requestIDFilter(org.ameba.IDGenerator<String> uuidGenerator)
     
    org.springframework.web.client.RestTemplate
    restTemplate(org.springframework.boot.web.client.RestTemplateBuilder builder)
     
    org.ameba.i18n.Translator
     
    org.ameba.IDGenerator<String>
     

    Methods inherited from class java.lang.Object Link icon

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.springframework.web.servlet.config.annotation.WebMvcConfigurer Link icon

    addArgumentResolvers, addCorsMappings, addErrorResponseInterceptors, addFormatters, addResourceHandlers, addReturnValueHandlers, addViewControllers, configureAsyncSupport, configureContentNegotiation, configureDefaultServletHandling, configureHandlerExceptionResolvers, configureMessageConverters, configurePathMatch, configureViewResolvers, extendHandlerExceptionResolvers, extendMessageConverters, getMessageCodesResolver, getValidator
  • Constructor Details Link icon

    • CommonModuleConfiguration Link icon

      public CommonModuleConfiguration()
  • Method Details Link icon

    • addInterceptors Link icon

      public void addInterceptors(org.springframework.web.servlet.config.annotation.InterceptorRegistry registry)
      Specified by:
      addInterceptors in interface org.springframework.web.servlet.config.annotation.WebMvcConfigurer
    • restTemplate Link icon

      @Bean public org.springframework.web.client.RestTemplate restTemplate(org.springframework.boot.web.client.RestTemplateBuilder builder)
    • metricsCommonTags Link icon

      @RefreshScope @Bean org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryCustomizer<io.micrometer.core.instrument.MeterRegistry> metricsCommonTags(@Value("${spring.application.name}") String applicationName)
    • localeResolver Link icon

      @Bean public org.springframework.web.servlet.LocaleResolver localeResolver()
    • localeChangeInterceptor Link icon

      @Bean public org.springframework.web.servlet.i18n.LocaleChangeInterceptor localeChangeInterceptor()
    • translator Link icon

      @Bean public org.ameba.i18n.Translator translator()
    • messageSource Link icon

      @Bean public org.springframework.context.MessageSource messageSource()
    • corsFiler Link icon

      @Profile("DEV") @Bean public jakarta.servlet.Filter corsFiler()
    • uuidGenerator Link icon

      @Bean public org.ameba.IDGenerator<String> uuidGenerator()
    • requestIDFilter Link icon

      @Bean public org.springframework.boot.web.servlet.FilterRegistrationBean<org.ameba.http.RequestIDFilter> requestIDFilter(org.ameba.IDGenerator<String> uuidGenerator)