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

org.smartboot.http.restful.annotation.RequestMapping Maven / Gradle / Ivy

package org.smartboot.http.restful.annotation;

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

/**
 * @author 三刀([email protected])
 * @version V1.0 , 2022/7/2
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface RequestMapping {
    String value() default "";

    RequestMethod[] method() default {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy