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

tech.mhuang.pacebox.springboot.autoconfiguration.exception.ExceptionProperties Maven / Gradle / Ivy

There is a newer version: 2023.0.0.0
Show newest version
package tech.mhuang.pacebox.springboot.autoconfiguration.exception;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import tech.mhuang.pacebox.springboot.autoconfiguration.ConfigConsts;

/**
 * SpringBoot扩展Exception配置
 *
 * @author mhuang
 * @since 1.0.0
 */
@Data
@ConfigurationProperties(prefix = ConfigConsts.EXCEPTION)
public class ExceptionProperties {

    private boolean enable;

    /**
     * 开启debug则会输出异常到前端
     */
    private boolean debug;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy