com.stevenpg.aop.AnnotationTestController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CatFactsAnnotation Show documentation
Show all versions of CatFactsAnnotation Show documentation
This is a very serious annotation that will print a cat fact when invoked on a method.
package com.stevenpg.aop;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class AnnotationTestController {
@CatFacts
@GetMapping("/")
public String catFactsMappingTest() {
return "Successfully Accessed /";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy