摘要:
停止表继续插入 hbase shell>disable 'tbname' 制作快照hbase shell> snapshot 'tbname', 'tbsnap' 克隆快照为新的名字hbase shell> clone_snapshot 'tbsnap', 'newtb' 删除快照hbase she 阅读全文
摘要:
JSON.toJSONString(..., SerializerFeature.DisableCircularReferenceDetect) 阅读全文
摘要:
String uuid = UUID.randomUUID().toString(); 阅读全文
摘要:
在<build>中添加如下配置 <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</incl 阅读全文
摘要:
格式化代码 1. Ctrl + A2. Code -> Reformat Code,格式化快捷键 Ctrl + Alt + L 给文件重命名 点击你要改的单词,右键refactor ->rename 阅读全文
摘要:
设置anaconda环境 1、点击Create New Project选项 2、选择 Existing interpreter,在弹出来的页面中配置 删除工程 1、在菜单中选择:file——>close project 2、选择需要删除的项目右上角的“×”号进行删除工程项目 3、找到工程项目的存放路 阅读全文
摘要:
在windows-preferences-java-debug下选择SuspendVM 也可在设置断点时直接将断点类型设置为suspend vm 阅读全文
摘要:
加入用户组: sudo groupadd -g groupid -d dir <newgrp> 加入用户: sudo useradd -g grp -u userid <newuser> 加入sudo组: sudo usermod -aG sudo <newuser> 删除用户: sudo delu 阅读全文
摘要:
A robot on an infinite grid starts at point (0, 0) and faces north. The robot can receive one of three possible types of commands: -2: turn left 90 de 阅读全文
摘要:
在leetcode中遇到一个题目涉及到数组的删除元素的操作:remove和del 题目大意是将一个数组中的重复数据删除 提交的代码如下(python3): 根据代码执行及找到的资料总结如下: 1、del删除的是对数据对象的引用,并不触及到数据本身,removeDuplicates2中使用del(el 阅读全文