123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.usky.system;
- import org.mybatis.spring.annotation.MapperScan;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.cloud.openfeign.EnableFeignClients;
- import org.springframework.context.annotation.ComponentScan;
- import org.springframework.context.annotation.EnableAspectJAutoProxy;
- /**
- * 系统模块
- *
- * @author ruoyi
- */
- @EnableAspectJAutoProxy(proxyTargetClass = true, exposeProxy = true)
- @EnableFeignClients(basePackages = {"com.usky"})
- @MapperScan(value = "com.usky.system.mapper")
- @ComponentScan(basePackages = {"com.usky"})
- @SpringBootApplication
- public class RuoYiSystemApplication
- {
- public static void main(String[] args)
- {
- SpringApplication.run(RuoYiSystemApplication.class, args);
- System.out.println("(♥◠‿◠)ノ゙ 永天系统模块启动成功 ლ(´ڡ`ლ)゙ \n" +
- " .-------. ____ __ \n" +
- " | _ _ \\ \\ \\ / / \n" +
- " | ( ' ) | \\ _. / ' \n" +
- " |(_ o _) / _( )_ .' \n" +
- " | (_,_).' __ ___(_ o _)' \n" +
- " | |\\ \\ | || |(_,_)' \n" +
- " | | \\ `' /| `-' / \n" +
- " | | \\ / \\ / \n" +
- " ''-' `'-' `-..-' ");
- }
- }
|