【7.1.6】更新注释

pull/25/head
fengshuonan 2021-12-20 21:20:58 +08:00
parent 6eb7085348
commit e05ec50d86
1 changed files with 7 additions and 2 deletions

View File

@ -2,13 +2,18 @@ package cn.stylefeng.roses.kernel.system.modular.resource.framework;
import cn.stylefeng.roses.kernel.system.modular.resource.service.ApiResourceService; import cn.stylefeng.roses.kernel.system.modular.resource.service.ApiResourceService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.ApplicationArguments; import org.springframework.boot.ApplicationArguments;
import org.springframework.boot.ApplicationRunner; import org.springframework.boot.ApplicationRunner;
import org.springframework.core.annotation.Order; import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import javax.annotation.Resource;
/** /**
*
* <p>
* resource_codeapp codeapp code
*
* @author majianguo * @author majianguo
* @date 2021/12/2 11:58 * @date 2021/12/2 11:58
*/ */
@ -17,7 +22,7 @@ import org.springframework.stereotype.Component;
@Order(Integer.MAX_VALUE - 1) @Order(Integer.MAX_VALUE - 1)
public class ApiResourceApplicationRunner implements ApplicationRunner { public class ApiResourceApplicationRunner implements ApplicationRunner {
@Autowired @Resource
private ApiResourceService apiResourceService; private ApiResourceService apiResourceService;
@Override @Override