自定义注解

以tlerp项目的 @SecureSiteApplication 注解为例来理解。

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootApplication
@EnableTransactionManagement
@Import({WebSecurityConfig.class, RedisSessionConfig.class, ApiLoggerAndValidationConfig.class})
public @interface SecureSiteApplication {
posted @ 2019-06-19 15:41  cuiqq  阅读(158)  评论(0编辑  收藏  举报