All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.opensabre.boot.config.OpensabreBootConfig Maven / Gradle / Ivy

The newest version!
package io.github.opensabre.boot.config;

import io.github.opensabre.common.web.exception.DefaultGlobalExceptionHandlerAdvice;
import io.github.opensabre.common.web.rest.RestResponseBodyAdvice;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.PropertySource;

/**
 * 初使化全局报文和全局异常配置
 */
@AutoConfiguration
@PropertySource(value = "classpath:opensabre-boot.properties", encoding = "UTF8")
@Import({DefaultGlobalExceptionHandlerAdvice.class, RestResponseBodyAdvice.class})
public class OpensabreBootConfig {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy