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

cn.lang.global.properties.GlobalExceptionProperties Maven / Gradle / Ivy

package cn.lang.global.properties;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix = "lang.global-exception")
public class GlobalExceptionProperties {

    private Boolean enabled;

    public Boolean getEnabled() {
        return enabled;
    }

    public void setEnabled(Boolean enabled) {
        this.enabled = enabled;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy