| | |
| | | import org.springframework.boot.SpringApplication;
|
| | | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
| | | import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
| | | import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
| | | import org.springframework.scheduling.annotation.EnableScheduling;
|
| | |
|
| | | /**
|
| | |
| | | */
|
| | | @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
|
| | | @EnableScheduling
|
| | | @EnableAspectJAutoProxy(exposeProxy = true)
|
| | | public class RuoYiApplication
|
| | | {
|
| | | public static void main(String[] args)
|