在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 {
        //项目启动时会执行这里的任务
        //通常加载用于系统参数加载
    }
}

 

相关文章:

  • 2022-12-23
  • 2021-10-17
  • 2021-07-09
  • 2022-12-23
  • 2022-12-23
  • 2021-08-15
  • 2022-01-09
  • 2022-02-12
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-20
  • 2022-12-23
  • 2022-12-23
  • 2021-10-04
相关资源
相似解决方案