EvalApplication.java 635 B

123456789101112131415161718192021
  1. package com.nju.edu.eval;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.context.annotation.ComponentScan;
  5. import org.springframework.context.annotation.EnableAspectJAutoProxy;
  6. import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
  7. /**
  8. * @author mars
  9. */
  10. @SpringBootApplication
  11. @ComponentScan(basePackages = "com.nju.edu.eval.*")
  12. @EnableAspectJAutoProxy
  13. @EnableJpaRepositories
  14. public class EvalApplication {
  15. public static void main(String[] args) {
  16. SpringApplication.run(EvalApplication.class, args);
  17. }
  18. }