| 123456789101112131415161718192021 |
- package com.nju.edu.eval;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.context.annotation.ComponentScan;
- import org.springframework.context.annotation.EnableAspectJAutoProxy;
- import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
- /**
- * @author mars
- */
- @SpringBootApplication
- @ComponentScan(basePackages = "com.nju.edu.eval.*")
- @EnableAspectJAutoProxy
- @EnableJpaRepositories
- public class EvalApplication {
- public static void main(String[] args) {
- SpringApplication.run(EvalApplication.class, args);
- }
- }
|