org.ehrbase.configuration.config.web.WebConfiguration Maven / Gradle / Ivy
/*
* Copyright (c) 2024 vitasystems GmbH.
*
* This file is part of project EHRbase
*
* 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
*
* https://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.ehrbase.configuration.config.web;
import org.ehrbase.configuration.util.IsoDateTimeConverter;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.format.FormatterRegistry;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.PathMatchConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
/**
* {@link Configuration} from Spring Web MVC.
*/
@Configuration(proxyBeanMethods = false)
@EnableConfigurationProperties(CorsProperties.class)
public class WebConfiguration implements WebMvcConfigurer {
private final CorsProperties properties;
public WebConfiguration(CorsProperties properties) {
this.properties = properties;
}
@Override
public void addFormatters(FormatterRegistry registry) {
registry.addConverter(new IsoDateTimeConverter()); // Converter for version_at_time and other ISO date params
}
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**").combine(properties.toCorsConfiguration());
}
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
configurer.setUseTrailingSlashMatch(true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy