一:文档对象如下 @Data @AllArgsConstructor @NoArgsConstructor @Document(indexName = "items", type = "item",shards = 5, replicas = 1) public class Item impleme ...
分类:
其他好文 时间:
2021-05-24 08:04:47
阅读次数:
0
云服务器 公共参数 - 调用方式 - API 中心 - 腾讯云 https://cloud.tencent.com/document/api/213/15692 X-TC-Version String 是 操作的 API 的版本。取值参考接口文档中入参公共参数 Version 的说明。例如云服务器的 ...
分类:
其他好文 时间:
2021-05-24 07:45:47
阅读次数:
0
注解和反射 1.内置注解 package com.yu.annotation;?import java.util.ArrayList;?//什么是注解public class Test01 extends Object{?? // @Override 重写的注解 @Override public S ...
分类:
其他好文 时间:
2021-05-24 06:38:42
阅读次数:
0
原生input 类型为file时需要对不同参数做出调整 <input type="file" name="file" id="file" accpet=".doc,.docx,application/msword,application/vnd.openxmlformats-officedocume ...
分类:
其他好文 时间:
2021-05-24 06:06:15
阅读次数:
0
修改原生Input 的 file输入框的样式 此处使用了障眼法用以实现与element的相同样式 1.在HTML中使用时可以通过input的label进行快捷的输入框调用 <div> <label for="file" style="position: absolute;"> <div class= ...
分类:
其他好文 时间:
2021-05-24 06:04:34
阅读次数:
0
模拟点击事件 function triggerclick(ele){ if(ele instanceof $){ ele = ele[0] } var clickEvent = document.createEvent("MouseEvents"); clickEvent.initEvent("cl ...
分类:
其他好文 时间:
2021-05-24 05:33:57
阅读次数:
0
【一】背景 最近有关于漏洞内容的一些工作。 在查找资料的时候查到了这一月一直在找的关键词-优先级。 【二】相关链接 阿里云这个文档不错,先留一下。 https://help.aliyun.com/document_detail/84888.html 【三】 老规矩,先记录一下,放着。等我这阵子事都解 ...
分类:
其他好文 时间:
2021-05-24 01:49:51
阅读次数:
0
<script>$(document).ready(function(){ $("input:submit").click(function(){ $.ajax({ type: "POST", url: "Ajax", contentType: 'application/x-www-form-url ...
分类:
Web程序 时间:
2021-05-24 00:25:30
阅读次数:
0
早期数据渲染的几种方式 在模板引擎没有诞生之前,为了用JS把数据渲染到页面上,诞生了一系列数据渲染的方式。 最最基础的,莫过于直接使用DOM接口创建所有节点。 <div id="root"></div> <script> var root = document.getElementById('roo ...
分类:
其他好文 时间:
2021-05-03 12:12:34
阅读次数:
0
ShardingJDBC的核心流程主要分成六个步骤,分别是:SQL解析->SQL优化->SQL路由->SQL改写->SQL执行->结果归并,流程图如下: sharding官网 https://shardingsphere.apache.org/document/legacy/3.x/document ...
分类:
数据库 时间:
2021-04-30 12:09:19
阅读次数:
0