12345678910111213141516171819202122232425262728293031 |
- package com.ruoyi.auth;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
- import com.ruoyi.common.security.annotation.EnableRyFeignClients;
- /**
- * 认证授权中心
- *
- * @author ruoyi
- */
- @EnableRyFeignClients
- @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class })
- public class RuoYiAuthApplication
- {
- public static void main(String[] args)
- {
- SpringApplication.run(RuoYiAuthApplication.class, args);
- System.out.println("(♥◠‿◠)ノ゙ 认证授权中心启动成功 ლ(´ڡ`ლ)゙ \n" +
- " .-------. ____ __ \n" +
- " | _ _ \\ \\ \\ / / \n" +
- " | ( ' ) | \\ _. / ' \n" +
- " |(_ o _) / _( )_ .' \n" +
- " | (_,_).' __ ___(_ o _)' \n" +
- " | |\\ \\ | || |(_,_)' \n" +
- " | | \\ `' /| `-' / \n" +
- " | | \\ / \\ / \n" +
- " ''-' `'-' `-..-' ");
- }
- }
|