SpringBoot整合定时器.
例子:比如半夜自动清理后台内存的软件
1,引入相关的依赖
<引入定时依赖>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
通过创建任务类来调用这个定时器以及功能
@Component //交于spring容器创建该类的对象
public class MyTask {
@Scheduled(cron="0/10 * * * * ?")
public void task(){
System.out.println("~~~~~~~~~~~~~~~~~~~~");//代码逻辑
}
}
通过启动注解来启动定时器
@SpringBootApplication
@ComponentScan(basePackages = {"com.ykq"}) //认为的指定扫描那些包
@EnableScheduling //开启定时器的注解
public class SpringbootAutoApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootAutoApplication.class, args);
}
}
2,涉及到了分页插件,PageHelper,PageInfo,调用.
Crolller的代码
3,thymelead模板引擎--jsp
Static是静态资源可以被直接被浏览器访问,使用thymeleaf引入相关的依赖,
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2,必须在网页中引入相关的代码
<html xmlns:th="http://www.thymeleaf.org">
SpringBoot大部分都是自动配置需要写入相关的Bean配置,
其次不能直接访问JDbc数据源,