码迷,mamicode.com
首页 > 数据库 > 详细

springboot启动项目时执行任务,从数据库或者redis获取系统参数

时间:2019-08-28 13:24:40      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:mapping   nbsp   request   start   source   资源   location   方法   ppi   

在springboot启动类方法实现org.springframework.boot.CommandLineRunner接口

import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;

@RestController
@SpringBootApplication //Spring Boot核心注解,用于开启自动配置
public class StartApplication implements CommandLineRunner{
//程序可以直接在此启动
    @RequestMapping("/")
    String index(){
      return "ok";
    }
  
    public static void main(String[] args) {
        SpringApplication.run(StartApplication.class, args);
    }
    
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        //配置静态资源处理
        registry.addResourceHandler("/**")
        .addResourceLocations("classpath:/META-INF/")
        .addResourceLocations("classpath:/hospitalpay");
    }

    @Override
    public void run(String... args) throws Exception {
        //项目启动时会执行这里的任务
        //通常加载用于系统参数加载
    }
}

 

springboot启动项目时执行任务,从数据库或者redis获取系统参数

标签:mapping   nbsp   request   start   source   资源   location   方法   ppi   

原文地址:https://www.cnblogs.com/zyf-yxm/p/11423260.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!