| 123456789101112131415 | 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")@EnableAspectJAutoProxypublic class LockTestApplication {    public static void main(String[] args) {        SpringApplication.run(LockTestApplication.class, args);    }}
 |