12 2022 档案
摘要:mybatis代理类创建 DefaultSqlSession #getMapper MapperRegistry #getMapper MapperProxyFactory #newInstance Proxy.newProxyInstance(, , new MapperProxy(new Map
阅读全文
摘要:##### 文档地址 [elasticsearch2](https://www.cnblogs.com/rbcd/articles/17527328.html) [elasticsearch高级检索](https://www.cnblogs.com/rbcd/articles/17527413.ht
阅读全文
摘要:##### es官网下载安装 ``` https://www.elastic.co/cn/downloads/past-releases#kibana ``` ##### 让外网可访问主要修改文件 config/kibana.yml,添加配置 ``` server.host: "0.0.0.0" e
阅读全文
摘要:##### oracle序列 ``` create sequence id_seq; select id_seq.nextval from dual; select id_seq.currval from dual; ``` ##### 分页查询 ``` 分页查询 SELECT * FROM (SE
阅读全文
摘要:##### jenkins安装包下载 ##### Jenkins自动触发配置 ``` 位置:Build Triggers -> Poll SCM 周一至周五每天8点13点构建 H 8,13 * * 1-5 每天8点13点构建 H 8,13 * * * 每2分钟检查下git仓库代码是否有变化,有变化时
阅读全文
摘要:下载arthas全量包 https://arthas.aliyun.com/doc/download.html 启动 java -Dfile.encoding=utf-8 -jar arthas-boot.jar 启动后选择需要查看的项目进程 watch的使用文档 https://arthas.al
阅读全文
摘要:azkaban部署 azkaban-web/bin/start-web.sh azkaban-executor/bin/start-exec.sh 界面登录密码配置文件 azkaban-web/conf/azkaban-users.xml
阅读全文
摘要:netty 同步阻塞(blocking-IO) BIO 同步非阻塞(non-blocking-IO) NIO 异步非阻塞(asynchronous-non-blocking-IO) AIO 是一个异步的 基于事件驱动的网络应用框架 Netty定义 它可以用来开发高性能服务端和客户端 Buffer(缓
阅读全文
摘要:spring MVC DispatcherServlet #doDispatch -> HandlerExecutionChain -> HandlerAdapter -> HandlerExecutionChain.pre -> HandlerAdapter.handle -> HandlerEx
阅读全文
摘要:GBase8a命令 iceberg命令 dm命令 pg命令 mysql命令 gauss命令 表编辑 视图编辑 存储过程编辑 常用命令 1、查询所有的数据库:show databases; 2、查询当前所在数据库:show current databases; 2、查询当前数据库下所有的表:show
阅读全文