package com.ard.gb28181;
|
|
import com.ard.common.security.annotation.EnableCustomConfig;
|
import com.ard.common.security.annotation.EnableRyFeignClients;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
/**
|
* 国标28181模块
|
*
|
* @author fengcheng
|
*/
|
@EnableCustomConfig
|
@EnableRyFeignClients
|
@SpringBootApplication
|
@ServletComponentScan("com.ard.gb28181.config")
|
@EnableScheduling
|
@Slf4j
|
public class ArdGb28181Application {
|
public static void main(String[] args) {
|
SpringApplication.run(ArdGb28181Application.class, args);
|
System.out.println("(♥◠‿◠)ノ゙ GB28181模块启动成功 ლ(´ڡ`ლ)゙ \n" +
|
" ___ ___ \n" +
|
" /\\ \\ /\\ \\ _____ \n" +
|
" /::\\ \\ /::\\ \\ /::\\ \\ \n" +
|
" /:/\\:\\ \\ /:/\\:\\__\\ /:/\\:\\ \\ \n" +
|
" /:/ /::\\ \\ /:/ /:/ / /:/ \\:\\__\\ \n" +
|
" /:/_/:/\\:\\__\\ /:/_/:/__/___ /:/__/ \\:|__| \n" +
|
" \\:\\/:/ \\/__/ \\:\\/:::::/ / \\:\\ \\ /:/ / \n" +
|
" \\::/__/ \\::/~~/~~~~ \\:\\ /:/ / \n" +
|
" \\:\\ \\ \\:\\~~\\ \\:\\/:/ / \n" +
|
" \\:\\__\\ \\:\\__\\ \\::/ / \n" +
|
" \\/__/ \\/__/ \\/__/ \n");
|
}
|
}
|