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

com.stevenpg.aop.AnnotationTestController Maven / Gradle / Ivy

Go to download

This is a very serious annotation that will print a cat fact when invoked on a method.

There is a newer version: 2.0.1
Show newest version
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