[置顶] java访问权限范围

摘要: 阅读全文

posted @ 2017-03-27 14:57 AlphaGo1号 阅读(91) 评论(0) 推荐(0) 编辑

2021年2月3日

使用openssh配置Nginx https代理

摘要: 生成秘钥key: $ openssl genrsa -des3 -out server.key 2048 会有两次要求输入密码,输入同一个即可 输入密码 然后你就获得了一个server.key文件.以后使用此文件(通过openssl提供的命令或API)可能经常回要求输入密码,如果想去除输入密码的步骤 阅读全文

posted @ 2021-02-03 13:36 AlphaGo1号 阅读(427) 评论(0) 推荐(0) 编辑

2021年1月19日

gradle配置用例(转载)

摘要: plugins { id 'java' } //相当于maven的groupid group 'com.cyjz' //相当于maven的version version '1.0-SNAPSHOT' //maven中的artifactId相当于name,显示在settings.gradle里面 // 阅读全文

posted @ 2021-01-19 15:04 AlphaGo1号 阅读(128) 评论(0) 推荐(0) 编辑

2020年12月24日

springboot2.2 单元测试记录找不到dao的问题

摘要: 一定不要漏了扫描dao层的映射文件 阅读全文

posted @ 2020-12-24 11:38 AlphaGo1号 阅读(221) 评论(0) 推荐(0) 编辑

2020年10月27日

Java8内存模型

摘要: 阅读全文

posted @ 2020-10-27 17:24 AlphaGo1号 阅读(46) 评论(0) 推荐(0) 编辑

线程池ThreadPool

摘要: 线程池ThreadPoolExecutor ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(3, 5, 10L, TimeUnit.MINUTES, new LinkedBlockingQueue<Runnable>(3) 阅读全文

posted @ 2020-10-27 16:15 AlphaGo1号 阅读(142) 评论(0) 推荐(0) 编辑

2020年10月19日

Oracle利用序列定时增长每天生成新序列号

摘要: 1.定义序列 -- Create sequence create sequence BCM_GLOABAL_ID minvalue 0 maxvalue 999999999999999999 start with 1 increment by 1 cache 20; 2.编写存储过程 create 阅读全文

posted @ 2020-10-19 15:45 AlphaGo1号 阅读(881) 评论(0) 推荐(0) 编辑

2019年8月7日

ORACLE利用游标批量插入

摘要: begin for cr in ( select x03.xsddhm from xst03 x03 left join kct98 t98 on t98.xsddhm = x03.xsddhm left join kcm07 m7 on t98.kccxdm = m7.kccxdm and t98.kcppai = m7.kcppai ... 阅读全文

posted @ 2019-08-07 11:10 AlphaGo1号 阅读(1945) 评论(0) 推荐(0) 编辑

2017年5月31日

BlockingQueue基本操作的特性

摘要: BlockingQueue 方法以四种形式出现,对于不能立即满足但可能在将来某一时刻可以满足的操作,这四种形式的处理方式不同:第一种是抛出一个异常,第二种是返回一个特殊值(null 或 false,具体取决于操作),第三种是在操作可以成功前,无限期地阻塞当前线程,第四种是在放弃前只在给定的最大时间限 阅读全文

posted @ 2017-05-31 14:39 AlphaGo1号 阅读(169) 评论(0) 推荐(0) 编辑

2017年3月15日

String,StringBuilder的可变性

摘要: 阅读全文

posted @ 2017-03-15 10:30 AlphaGo1号 阅读(106) 评论(0) 推荐(0) 编辑

导航