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

com.github.fanzezhen.common.exception.config.EnableCommonExceptionConfig Maven / Gradle / Ivy

There is a newer version: 3.0.1-2023.10.13
Show newest version
package com.github.fanzezhen.common.exception.config;

import com.github.fanzezhen.common.core.config.EnableCommonCoreConfig;
import org.springframework.context.annotation.Import;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * @author zezhen.fan
 */
@EnableCommonCoreConfig
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Import({ExceptionSpringConfig.class})
public @interface EnableCommonExceptionConfig {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy