You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
708 B
Java
21 lines
708 B
Java
package com.ruoyi.auth;
|
|
|
|
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
|
|
|
/**
|
|
* 认证授权中心
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
@EnableDubbo
|
|
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
|
|
public class RuoYiAuthApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(RuoYiAuthApplication.class, args);
|
|
System.out.println("(♥◠‿◠)ノ゙ 认证授权中心启动成功 ლ(´ڡ`ლ)゙ ");
|
|
}
|
|
}
|