会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
fight139
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
5
6
7
8
9
10
11
12
13
···
29
下一页
2021年5月8日
java方法变量,Lambda表达式
摘要: Lambda表达式 public class Test { public static void main(String[] args) { fun((a) -> a + 100); } static void fun(Function<Integer, Integer> fun) { System
阅读全文
posted @ 2021-05-08 14:25 fight139
阅读(106)
评论(0)
推荐(0)
2021年4月28日
ajax文件下载
摘要: js function _es_preDownload(id, fileName) { $.ajax({ url: '${ctx}/fdAttach/download', type: 'post', async: false, mimeType: 'text/plain; charset=x-use
阅读全文
posted @ 2021-04-28 11:26 fight139
阅读(220)
评论(0)
推荐(0)
2021年4月23日
微服务 --> spring cloud与微服务概述
摘要: 传统的单体应用 所谓的单体应用程序,通俗来说就是将所有的功能都全部堆积在一起。这个应用大部分是一个war包或者jar包。随着业务的发展,功能的增加,多年以后这个单体项目将变得越来越臃肿。 这样的单体应用在公司创建初期是比较好的一种方案,要快速增加新功能或部署发布都比较简单,随着时间的推移,危机慢慢就
阅读全文
posted @ 2021-04-23 13:43 fight139
阅读(120)
评论(0)
推荐(0)
2021年4月15日
java并发编程基础
摘要: Java并发编程
阅读全文
posted @ 2021-04-15 18:54 fight139
阅读(98)
评论(0)
推荐(0)
2020年12月20日
算法 --> 二叉树遍历
摘要: 概念 二叉树的遍历有 先序、中序、后续遍历 先序遍历 当前节点 - 左子节点 - 右子节点 a-b-d-e-c-f 中序遍历 左子节点 - 当前节点 - 右子节点 d-b-e-a-f-c 后续遍历 左子节点 - 右子节点 - 当前节点 d-e-b-f-c-a 递归方式遍历 这种方式比较简单 // 先
阅读全文
posted @ 2020-12-20 21:01 fight139
阅读(118)
评论(0)
推荐(0)
2020年12月18日
nginx常用配置
摘要: http模块 stream模块 从1.9.0开始,增加stream模块,用来实现四层协议的转发、代理或者负载均衡等 stream模块的用法和http模块差不多,语法基本一致,支持server,hash, listen, proxy_pass等指令。 Oracle反向代理 #如果要代理oracle或者
阅读全文
posted @ 2020-12-18 15:03 fight139
阅读(139)
评论(0)
推荐(0)
2020年12月3日
docker 入门
摘要: 构建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>
阅读全文
posted @ 2020-12-03 20:27 fight139
阅读(77)
评论(0)
推荐(0)
2020年11月23日
idea手动保存文本
摘要: System Settings Editor tabs
阅读全文
posted @ 2020-11-23 15:59 fight139
阅读(681)
评论(0)
推荐(0)
2020年11月5日
mac下安装配置sql plus
摘要: 下载 oracle instantclient 解压 将两个压缩包解压到同一个目录:instantclient下 配置环境变量 vim ~/.bash_profile 增加如下内容: DYLD_LIBRARY_PATH="/Users/mac/opt/oracle/instantclient" ex
阅读全文
posted @ 2020-11-05 19:39 fight139
阅读(1458)
评论(0)
推荐(0)
oracle序列
摘要: 序列的创建 create sequence aa_id increment by 1 start with 1 minvalue 1 maxvalue 99999 cache 20 序列的使用 select aa_id.nextval from dual;
阅读全文
posted @ 2020-11-05 18:46 fight139
阅读(94)
评论(0)
推荐(0)
oracle存储过程
摘要: 简介 存储过程是一种命名的PL/SQL代码块,存储在Oracle数据库中,可以被用户调用。 存储过程可以包含参数,一般没有返回值 存储过程是事先编译好的代码,再次调用的时候不需要重新编译,因此程序的运行效率较高。 存储过程的创建 语法格式如下: create [or replace] procedu
阅读全文
posted @ 2020-11-05 18:40 fight139
阅读(627)
评论(0)
推荐(0)
2020年11月4日
Java正则表达式
摘要: 正则表达式实例 java.util.regex包中定义了如下正则相关的类: Pattern pattern对象是一个正则表达式的编译标识。该类没有构造方法 Pattern pattern = Pattern.compile("[a-zA-Z]+(\\d+)\\w"); Matcher matcher
阅读全文
posted @ 2020-11-04 18:23 fight139
阅读(76)
评论(0)
推荐(0)
2020年10月29日
expect命令
摘要: #!/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
阅读全文
posted @ 2020-10-29 10:04 fight139
阅读(86)
评论(0)
推荐(0)
2020年10月15日
oracle数据导出
摘要: 查询表 select * from tab; 全部导出 在网上查找的方法 exp jck/password file=d:\test.dmp statistics=none TABLES=(tb1, tb2...) 实际环境 Linux version 3.10.0-693.el7.x86_64 (
阅读全文
posted @ 2020-10-15 17:07 fight139
阅读(401)
评论(0)
推荐(0)
2020年10月13日
jquery选择器,节点函数
摘要: 附近节点获取 父节点 $().parent(); // 直接父节点 $().parents('tr:first'); // 第一个tr父节点 子节点 $().children(); $().find(':checkbox'); // CheckBox的子节点 兄弟节点 $().prev(); //
阅读全文
posted @ 2020-10-13 15:33 fight139
阅读(138)
评论(0)
推荐(0)
上一页
1
···
5
6
7
8
9
10
11
12
13
···
29
下一页