
JAVA WEB
小萨技术
无
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
@Scheduled 定时任务
每5分钟执行一次 @Scheduled(cron = "0 0/5 * * * ?") 每一小时执行一次 @Scheduled(cron = "0 0 * * * ?") 每一天执行一次 @Scheduled(cron = "0 0 0 * * ?")原创 2019-03-10 17:55:13 · 2791 阅读 · 0 评论 -
HttpClient 使用
1.导入jar包 <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.5</version> </dependency>原创 2019-03-12 13:38:41 · 223 阅读 · 0 评论 -
idea springboot 打jar包
操作步骤 步骤一 file->Project Structure->Artifacts 步骤二 点击左上角的绿色加号 + Jar->From modules with… 步骤3 Main Class 选择对应的项目主函数 Jar files from libraries 选择 copy to the output directory and link via manifest D...原创 2019-03-12 13:39:03 · 170 阅读 · 0 评论