Guest User

Untitled

a guest
Sep 4th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. package hello;
  2.  
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5. import org.springframework.context.annotation.EnableAspectJAutoProxy;
  6.  
  7. @SpringBootApplication
  8. @EnableAspectJAutoProxy
  9. public class Application {
  10.  
  11.     public static void main(String[] args) {
  12.         SpringApplication.run(Application.class, args);
  13.     }
  14.  
  15. }
Add Comment
Please, Sign In to add comment