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

com.jn.agileway.springboot.web.rest.EnableGlobalRestHandlers Maven / Gradle / Ivy

package com.jn.agileway.springboot.web.rest;

import com.jn.agileway.springboot.i18n.error.EnableI18ErrorMessageHandler;
import com.jn.agileway.springboot.web.filter.EnableAgilewayWebFilters;
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
@EnableI18ErrorMessageHandler
public @interface EnableGlobalRestHandlers {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy