contextPath

Spring boot默认是/ ,
这样直接通过http://ip:port/就可以访问到index页面,
如果要修改为http://ip:port/path/ 访问的话,
那么需要在Application.properties文件中加入
server.context-path = /  你的path,比如:spring-boot,
那么访问地址就是http://ip:port/spring-boot 路径。

server.context-path=/spring-boot

定时任务(简单)

package com.osvue.win.app.spr;

import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;

@Configuration
@EnableScheduling
public class SchedulingConfig {

    @Scheduled(cron = "0/20 * * * * ?") // 每20秒执行一次
    public void scheduler() {
        System.out.println(">>>>>>>>> SchedulingConfig.scheduler()");
    }
}