4710884c7ab613f1f3691f1d54674fa360d43602.svn-base 466 B

123456789101112131415
  1. package org.jeecg.boot.starter.lock.test;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.context.annotation.EnableAspectJAutoProxy;
  5. @SpringBootApplication(scanBasePackages = "org.jeecg")
  6. @EnableAspectJAutoProxy
  7. public class LockTestApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(LockTestApplication.class, args);
  10. }
  11. }