com.jn.agileway.springboot.web.rest.EnableGlobalRestHandlers Maven / Gradle / Ivy
package com.jn.agileway.springboot.web.rest;
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;
/**
* 用于启动全局的 Rest handler 处理器
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Import({GlobalRestHandlersConfiguration.class})
@EnableAgilewayWebFilters
public @interface EnableGlobalRestHandlers {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy