上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: https://www.xuxueli.com/xxl-job/ 阅读全文
posted @ 2021-06-02 11:12 老小包的博客 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 首先创建线程池 @EnableAsync@Configuration@Componentpublic class TaskPoolConfig { @Bean("taskExecutor") public ThreadPoolTaskExecutor taskExecutor(){ ThreadPo 阅读全文
posted @ 2021-05-18 14:10 老小包的博客 阅读(182) 评论(0) 推荐(0) 编辑
摘要: https://lingcoder.github.io/OnJava8/?hmsr=codercto.com&utm_medium=codercto.com&utm_source=codercto.com#/book/01-What-is-an-Object?id=%e6%8a%bd%e8%b1%a 阅读全文
posted @ 2021-03-16 13:31 老小包的博客 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 将一个文件从一个服务器 传输到另一台服务器 scp 文件名 用户@ip:/url scp nginx-1.16.1.tar.gz root@10.***.***.89:/usr/local 阅读全文
posted @ 2021-02-07 14:37 老小包的博客 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 创建序列 CREATE SEQUENCE APPROVE_SequenceINCREMENT BY 1 -- 每次加几个START WITH 1 -- 从1开始计数NOMAXVALUE -- 不设置最大值NOCYCLE -- 一直累加,不循环 关联数据表 CREATE TRIGGER Increas 阅读全文
posted @ 2020-12-29 14:34 老小包的博客 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 引包 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> <version>2.2.0.RELEASE</version>< 阅读全文
posted @ 2020-10-28 16:18 老小包的博客 阅读(426) 评论(0) 推荐(0) 编辑
摘要: Mapper 增加注解 @SelectProvider(type = xxx.class, method = "xxx") Page<xxxVO> queryxxxxInfo(Page<xxxxVO> page, xxxxxVO requestVO); //查询代理人信息 页面展示public St 阅读全文
posted @ 2020-09-16 11:20 老小包的博客 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 首先引入excel工具 <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>2.2.6</version></dependency>入参需传入 HttpServletRespo 阅读全文
posted @ 2020-09-15 13:14 老小包的博客 阅读(222) 评论(0) 推荐(0) 编辑
摘要: https://www.hangge.com/blog/cache/detail_2913.html 阅读全文
posted @ 2020-09-08 14:04 老小包的博客 阅读(510) 评论(0) 推荐(0) 编辑
摘要: server { listen 80; server_name localhost; location / { root /opt/; # try_files $uri $uri/ /index.html; # index index.html index.htm; } location /admi 阅读全文
posted @ 2020-08-07 09:11 老小包的博客 阅读(360) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页