摘要:
场景: input标签的readonly属性,在满足条件时存在,否则不存在 例如 <input type="text" readonly> 和 <input type="text">两种形式切换 实现 <input type="text" readonly="条件?true:false"> 通过tr 阅读全文
摘要:
原文地址: https://www.jb51.net/article/51902.htm @echo off echo "请注意你的杀毒软件提示,一定要允许" @echo ######################################## @xcopy C:\Windows\syste 阅读全文
摘要:
原文地址: https://www.cnblogs.com/mingbai/p/dockerclean.html 越往下的,越要慎重 列出无用的卷 docker volume ls -qf dangling=true 清理无用的卷,容器,镜像 docker volume rm $(docker vo 阅读全文
摘要:
功能: Mysql数据迁移至Hbase, 通过Phoenix框架作为操作Hbase的CRUD层, 平滑过渡sql语法使用, 解决Mysql单表数据量过大导致查询效率低的问题. Hbase的性能自然不用多说, PB级别的数据处理起来也没什么问题. 看一下Phoenix官方给出的性能介绍: http:/ 阅读全文
摘要:
在<build>标签里面添加 <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.xml</include> <include>**/*.properties</inclu 阅读全文
摘要:
用法: git commit --amend 合并缓存的修改和上一次的提交,用新的快照替换上一个提交。缓存区没有文件时运行这个命令可以用来编辑上次提交的提交信息,而不会更改快照。 修改提交信息 git commit --amend git push --force-with-lease origin 阅读全文
摘要:
cat /dev/null > file.log 阅读全文
摘要:
配置: <plugins> <!-- Maven Assembly Plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <vers 阅读全文
摘要:
1. 配置: version: '3.2' services: zookeeper: image: wurstmeister/zookeeper container_name: zookeeper ports: - "2181:2181" restart: always kafka: image: 阅读全文
摘要:
js的encodeURIComponent与java的URLEncoder.encode编码后不同的字符有如下六个: 原本 js java 空格 %20 + ) ) %29 ( ( %28 ' ' %27 ! ! %21 ~ ~ %7E Java 处理类 import java.io.Unsuppo 阅读全文