org.openwms.tms.routing.RoutingModuleConfiguration Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2005-2021 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.tms.routing;
import org.ameba.annotation.EnableAspects;
import org.ameba.app.SpringProfiles;
import org.ameba.http.PermitAllCorsConfigurationSource;
import org.ameba.mapping.BeanMapper;
import org.ameba.mapping.DozerMapperImpl;
import org.openwms.tms.routing.config.OwmsProperties;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.retry.annotation.EnableRetry;
import org.springframework.transaction.annotation.EnableTransactionManagement;
import org.springframework.web.client.RestTemplate;
import org.springframework.web.filter.CorsFilter;
import javax.servlet.Filter;
/**
* A RoutingModuleConfiguration.
*
* @author Heiko Scherrer
*/
@Configuration
@EnableAspects(propagateRootCause = true)
@EnableConfigurationProperties
@EnableRetry
@EnableTransactionManagement
@EnableJpaRepositories
@EnableJpaAuditing
@EnableCaching
@EntityScan
public class RoutingModuleConfiguration {
@LoadBalanced
@Bean
RestTemplate aLoadBalanced() {
return new RestTemplate();
}
@Bean
RestTemplate simpleRestTemplate() {
return new RestTemplate();
}
@Bean
BeanMapper beanMapper() {
return new DozerMapperImpl("META-INF/dozer/tms-bean-mappings.xml");
}
@Profile(SpringProfiles.DEVELOPMENT_PROFILE)
public @Bean
Filter corsFiler() {
return new CorsFilter(new PermitAllCorsConfigurationSource());
}
@Bean
InputContext in() {
return new InputContext();
}
@Bean
OwmsProperties owmsProperties() {
return new OwmsProperties();
}
}