Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package hello;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.context.annotation.EnableAspectJAutoProxy;
- @SpringBootApplication
- @EnableAspectJAutoProxy
- public class Application {
- public static void main(String[] args) {
- SpringApplication.run(Application.class, args);
- }
- }
Add Comment
Please, Sign In to add comment