package com.xzx.gc.role.runner; import com.xzx.gc.common.utils.BusinessUtil; 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.Component; /** */ @Component @Order(1) @Slf4j public class SystemInfoRunner implements CommandLineRunner { @Autowired private BusinessUtil businessUtil; @Override public void run(String... args) { log.debug(businessUtil.repeatService("权限服务启动完成")); } }