摘要:
构建jar openjdk docker pull openjdk:8-jre docker run -it --entrypoint bash openjdk:8-jre build jar image pom.xml <build> <finalName>web-demo</finalName> 阅读全文
摘要:
System Settings Editor tabs 阅读全文
摘要:
下载 oracle instantclient 解压 将两个压缩包解压到同一个目录:instantclient下 配置环境变量 vim ~/.bash_profile 增加如下内容: DYLD_LIBRARY_PATH="/Users/mac/opt/oracle/instantclient" ex 阅读全文
摘要:
序列的创建 create sequence aa_id increment by 1 start with 1 minvalue 1 maxvalue 99999 cache 20 序列的使用 select aa_id.nextval from dual; 阅读全文
摘要:
简介 存储过程是一种命名的PL/SQL代码块,存储在Oracle数据库中,可以被用户调用。 存储过程可以包含参数,一般没有返回值 存储过程是事先编译好的代码,再次调用的时候不需要重新编译,因此程序的运行效率较高。 存储过程的创建 语法格式如下: create [or replace] procedu 阅读全文
摘要:
正则表达式实例 java.util.regex包中定义了如下正则相关的类: Pattern pattern对象是一个正则表达式的编译标识。该类没有构造方法 Pattern pattern = Pattern.compile("[a-zA-Z]+(\\d+)\\w"); Matcher matcher 阅读全文
摘要:
#!/usr/bin/expect set timeout 30 spawn ssh -p [lindex $argv 0] [lindex $argv 1]@[lindex $argv 2] expect { "(yes/no)?" {send "yes\n";exp_continue} "pas 阅读全文
摘要:
查询表 select * from tab; 全部导出 在网上查找的方法 exp jck/password file=d:\test.dmp statistics=none TABLES=(tb1, tb2...) 实际环境 Linux version 3.10.0-693.el7.x86_64 ( 阅读全文
摘要:
附近节点获取 父节点 $().parent(); // 直接父节点 $().parents('tr:first'); // 第一个tr父节点 子节点 $().children(); $().find(':checkbox'); // CheckBox的子节点 兄弟节点 $().prev(); // 阅读全文
摘要:
新建父工程 new project->maven->maven-archetype-site 字符编码 utf-8 注解激活生效 java编译版本 file type 过滤 过滤不显示的文件类型 pom.xml 阅读全文
摘要:
Spring Cloud简介 cloud H 官方文档 boot 官方文档 spring cloud简介 Spring Cloud = 分布式微服务架构的一站式解决方案,是多种微服务结构落地技术的几何体,俗称微服务全家桶 spring boot和spring cloud版本选型 spring boo 阅读全文
摘要:
查看应用是否在运行: ps -ef | grep -i redis 查看端口是否被占用 netstat -anp | grep 3306 虚拟ip 启动: systemctl start firewalld 查状态:systemctl status firewalld 停止: systemctl d 阅读全文
该文被密码保护。 阅读全文
摘要:
aop实现 Function.prototype.before = function (beforefn) { var _self = this;//记录原函数 return function () { beforefn.call(this, arguments);//修正this值 return 阅读全文
摘要:
官方文档 示例一,本地数据 $("#menu-search").autocomplete({ source: function (req, res) { var key = req.term; var result = []; if (key) { for (var i in programs) { 阅读全文