com.github.datalking.annotation.web.RestController Maven / Gradle / Ivy
package com.github.datalking.annotation.web;
import com.github.datalking.annotation.Controller;
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 yaoo on 4/25/18
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Controller
@ResponseBody
public @interface RestController {
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy