摘要: Sub DeleteImages() Dim i As Long Dim SourceWidth As Single Dim SourceHeight As Single Dim DeleteCounter As Long ' Check if a picture is selected If Se 阅读全文
posted @ 2024-03-09 15:43 hsyooy 阅读(4) 评论(0) 推荐(0) 编辑
摘要: public static <T> T doGet(String url, Class<T> responseType, Map<String, Object> paramMap) { SimpleClientHttpRequestFactory requestFactory = new Simpl 阅读全文
posted @ 2023-05-16 16:40 hsyooy 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 1.根据索引id进行精确查询 GET test/_search{ "query":{ "match_phrase":{ "_id":1 } }} 2.新增一条索引id为1的数据:PUT test/_doc/1{ "name": "张三", "date": "2022-6-15 00:00:00", 阅读全文
posted @ 2022-06-15 10:33 hsyooy 阅读(56) 评论(0) 推荐(0) 编辑
摘要: server { listen 80; server_name your_domain.com; location /api { proxy_pass http://localhost:8080; proxy_set_header Host $host; proxy_set_header X-Rea 阅读全文
posted @ 2022-04-06 14:36 hsyooy 阅读(13) 评论(0) 推荐(0) 编辑
摘要: npm install --force <el-checkbox v-model="checkbox.checkModel" :label="index":disabled="checkbox.disabled.indexOf(index) >= 0"style="padding-left: 10p 阅读全文
posted @ 2022-03-03 10:06 hsyooy 阅读(29) 评论(0) 推荐(0) 编辑
摘要: select job, next_date, next_sec, failures, broken from user_jobs; create or replace sequence END_REST_SEQminvalue 0maxvalue 9999999999start with 1incr 阅读全文
posted @ 2021-10-21 14:07 hsyooy 阅读(31) 评论(0) 推荐(0) 编辑
摘要: @Test public void read() throws KettleException { KettleEnvironment.init(); TransMeta transMeta = new TransMeta(); transMeta.setName("datesyn2"); //添加 阅读全文
posted @ 2019-01-07 18:23 hsyooy 阅读(532) 评论(0) 推荐(0) 编辑
摘要: 返回定义的变量的类型:shift+alt+L 查看对象/方法等被谁引用: Ctrl+Alt+H. 阅读全文
posted @ 2018-08-02 09:32 hsyooy 阅读(101) 评论(0) 推荐(0) 编辑
摘要: Dependencies:是可选依赖(Optional Dependencies) Exclusions:是依赖排除(Dependency Exclusions) 2、Dependencies (1)当一个项目A依赖另一个项目B时,项目A可能很少一部分功能用到了项目B,此时就可以在A中配置对B的可选 阅读全文
posted @ 2018-07-05 16:00 hsyooy 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 右键我的电脑->属性->高级->环境变量->系统变量 新建变量名(win7,win10系统变量)JAVA_HOME变量值填写D:\Java\jdk1.8.0_172为jdk的安装路径 修改变量 Path ,在Path最前面加上时,需在环境变量后边加分号 如 %JAVA_HOME%\bin;%JAVA 阅读全文
posted @ 2018-06-25 23:05 hsyooy 阅读(342) 评论(0) 推荐(0) 编辑