com.stevenpg.aop.Application 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.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Service;
@SpringBootApplication
@Service
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy