org.sdase.commons.spring.boot.web.SdaSpringConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sda-commons-starter-web Show documentation
Show all versions of sda-commons-starter-web Show documentation
A library to bootstrap services easily that follow the patterns and specifications promoted by the SDA SE
The newest version!
/*
* Copyright 2022- SDA SE Open Industry Solutions (https://www.sda.se)
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
*/
package org.sdase.commons.spring.boot.web;
import org.sdase.commons.spring.boot.web.error.ApiExceptionHandler;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.PropertySource;
@AutoConfiguration
@PropertySource("classpath:/org/sdase/commons/spring/boot/web/defaults.properties")
@Import(ApiExceptionHandler.class)
public class SdaSpringConfiguration {}