jiazx0107@163.com
2023-10-23 e5c5137e91c04fff001d439d64ed5a253e3fc8da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.fzzy.gateway;
import com.fzzy.api.service.ApiCommonService;
import com.fzzy.api.service.ApiTriggerService;
import com.fzzy.api.service.GbCheckItemService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Service;
 
/**
 * 配置随系统启动默认配置
 */
@Service
@Slf4j
@Order(value = 2)
public class GatewayRunner implements CommandLineRunner {
 
 
    @Override
    public void run(String... args) throws Exception {
        log.info("网关接口随系统启动------------");
 
 
        //四川网关接口,启动默认获取鉴权信息,长期有效
 
 
    }
 
}