package org.jeecg.boot.starter.lock.test;
|
|
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
|
@SpringBootApplication(scanBasePackages = "org.jeecg")
|
@EnableAspectJAutoProxy
|
public class LockTestApplication {
|
|
public static void main(String[] args) {
|
SpringApplication.run(LockTestApplication.class, args);
|
}
|
|
}
|