health-base-system/base-system-server/src/main/java/com/health/system/server/HealthSystemApplication.java

35 lines
1.4 KiB
Java

package com.health.system.server;
import com.dtflys.forest.springboot.annotation.ForestScan;
import com.health.common.security.annotation.EnableCustomConfig;
import com.health.common.security.annotation.EnableRyFeignClients;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Configuration;
/**
* 系统模块
*
* @author health
*/
@EnableCustomConfig
@EnableRyFeignClients
@SpringBootApplication
@MapperScan(value = "com.health.system.server.mapper")
public class HealthSystemApplication {
public static void main(String[] args) {
SpringApplication.run(HealthSystemApplication.class, args);
System.out.println("(♥◠‿◠)ノ゙ 系统模块启动成功 ლ(´ڡ`ლ)゙ \n" +
" .-------. ____ __ \n" +
" | _ _ \\ \\ \\ / / \n" +
" | ( ' ) | \\ _. / ' \n" +
" |(_ o _) / _( )_ .' \n" +
" | (_,_).' __ ___(_ o _)' \n" +
" | |\\ \\ | || |(_,_)' \n" +
" | | \\ `' /| `-' / \n" +
" | | \\ / \\ / \n" +
" ''-' `'-' `-..-' ");
}
}