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

com.gitee.rabbitnoteeth.bedrock.http.server.annotation.Controller Maven / Gradle / Ivy

package com.gitee.rabbitnoteeth.bedrock.http.server.annotation;

import org.springframework.core.annotation.AliasFor;
import org.springframework.stereotype.Component;

import java.lang.annotation.*;

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Controller {

    @AliasFor(
        annotation = Component.class
    )
    String value() default "";

    Class server();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy