12345678910111213141516171819 |
- package com.xjrsoft;
- import com.xjrsoft.common.annotation.UniqueNameGenerator;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.context.annotation.ComponentScan;
- import org.springframework.context.annotation.EnableAspectJAutoProxy;
- /**
- * @author Zexy
- */
- @SpringBootApplication
- @EnableAspectJAutoProxy(exposeProxy = true)
- @ComponentScan(nameGenerator = UniqueNameGenerator.class)
- public class XjrSoftApplication {
- public static void main(String[] args) {
- SpringApplication.run(XjrSoftApplication.class, args);
- }
- }
|