2.4k 2 分钟

elasticsearch 集群登录配置 elasticsearch 默认集群配置好是没有登录认证的,直接就进去了,包括 kibana 也是,这样不太安全,所以添加一个登录的过程 网上有很多帖子说是在 elasticsearch.yml 配置下面这几种参数 http.cors.enabled: true http.cors.allow-origin: "*" http.cors.allow-headers: Authorization xpack.security.enabled: true...
14k 12 分钟

《Spring Boot in action》阅读笔记(1,2,3章节) 中文名:Spring Boot实战 英文名:Spring Boot in action 作者:Craig Walls 译者:丁雪丰 出版社:人民邮电出版社2016年9月第1版 随书源码:www.manning.com/books/spring-boot-in-action 注:随书源码版本比较老,可以按自己的来 2004年,Spring Framework 1.0正式发布 Spring Boot: 部署、监控、度量等 Spring Cloud:服务发现、服务降级(熔断)、监控等 演进: Spring...
2.4k 2 分钟

# 效果 # 实现 <el-dialog title="Upload" :visible.sync="uploadVisible" width="25%"> <el-upload action="/api/tools/disable_ec/file" :on-preview="handleUploadPreview" :before-upload="beforeUpload" :limit="1"...
1.9k 2 分钟

# 效果 # 代码 <el-dialog title="添加" :visible.sync="dynamicFormVisible" width="920px"> <el-form :model="dynamicForm"> <div> <el-form-item style="text-align: center;"> <el-input style="width:230px"...
1.3k 1 分钟

# SQL -- 简单交、并、差集只需要使用 intersect、union、minus 关键字即可-- 这里是对用户给予的两个数组(比如 excel 里的某两列)结合使用 oracle 的伪列去做交、并、差集运算-- 实际情况对于比较两个数组有更多选择,这里仅展示 oracle sql 方式(当然这里使用 oracle 有些笨,但是某些场景下还是可以使用的,比如 excle 里某列和 db 里某列数据的比较)with t_origin as (select 1000 || ',' || 2000 || ',' || 3000 || ',' ||...
1.2k 1 分钟

签到功能转自:https://gitee.com/Suwanbin/positionCheckIn也可参考:https://github.com/SincerelyUnique/wechat-miniprogram-demo (其实是上面作者的 code...
536 1 分钟

这个在 git 创建仓库后会有提示,这里仅做备份 …or create a new repository on the command lineecho "# wechat-miniprogram-demo" >> README.mdgit initgit add README.mdgit commit -m "first commit"git branch -M maingit remote add origin...
2k 2 分钟

# 说明 需求:生成 pdf 格式的证书,证书其实是有个模板的(下面测试我随便做了一个),不过内容(主要是证书上的文字)需要自己动态填写语言:python引入库: PyPDF2 - 负责读写和合并 pdf; (PyPDF2 1.26.0) reportlab - 负责绘画(创建)生成一个新的 pdf (reportlab 3.5.67) 基于 Python 3.6.8思路:使用 reportlab 的 canvas 根据坐标(以左下角为原点,使得整个 pdf page 在第一象限)绘制新的 pdf 文件放到内存, 使用 PyPDF2 读取 pdf 模板,合并上面生成的新的 pdf...
1.3k 1 分钟

1. 自动展开使用 automaticDropdown 属性控制(可以看源码里 props 下面有该属性,是一个布尔值) <el-select ref="selectFeature" v-model="feature" id="selectFeatureBox" clearable @change = "changeFeature" placeholder = "Please choose one new feature" filterable...
582 1 分钟

<el-select ref="selectFeature" v-model="feature" id="selectFeatureBox" clearable @change = "changeFeature" placeholder = "Please choose one new feature" filterable size='mini' style="min-width: 600px;position:...