auth-server-java/auth-admin/src/main/java/cn/bunny/services/AuthServiceApplication.java

22 lines
774 B
Java
Raw Normal View History

2024-09-27 12:21:17 +08:00
package cn.bunny.services;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@MapperScan("cn.bunny.services.mapper")
@ComponentScan("cn.bunny")
@EnableScheduling
@EnableCaching
@EnableTransactionManagement
@SpringBootApplication
2025-03-24 22:14:21 +08:00
public class AuthServiceApplication {
2024-09-27 12:21:17 +08:00
public static void main(String[] args) {
2025-03-24 22:14:21 +08:00
SpringApplication.run(AuthServiceApplication.class, args);
2024-09-27 12:21:17 +08:00
}
}