摘要: 环境 eclipse 4.7 jdk 1.8 Spring Boot 1.5.2 一、Spring Boot Cache以及整合EhCacheSpring从3.1开始定义了org.springframework.cache.Cache和org.springframework.cache.CacheM 阅读全文
posted @ 2019-07-24 16:59 cac2020 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 环境 eclipse 4.7 jdk 1.8 Spring Boot 1.5.2 一、打jar类型1、指定主程序入口,否则运行报错:没有主清单属性pom.xml: 2、打包 2、运行java -jar springboot-helloworld-0.0.1-SNAPSHOT.jar 二、打war类型 阅读全文
posted @ 2019-07-24 14:42 cac2020 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 环境 eclipse 4.7 jdk 1.8 Spring Boot 1.5.2 一、自定义参数通过注解直接获取配置文件application.properties中配置key的value1、application.properties 2、注解取值 3、APP 4、测试验证:http://loca 阅读全文
posted @ 2019-07-24 10:50 cac2020 阅读(1740) 评论(0) 推荐(0) 编辑
摘要: 环境 eclipse 4.7 jdk 1.8 Spring Boot 1.5.2一、定时任务1、启动类添加注解@EnableScheduling 用于开启定时任务 2、定义@Component定时组件类和@Scheduled定义执行周期 两种方式: (1)fixedDelay:示例:@Schedul 阅读全文
posted @ 2019-07-24 09:59 cac2020 阅读(1430) 评论(0) 推荐(0) 编辑