摘要: Mysql主从复制机制原理 阅读全文
posted @ 2020-03-30 16:47 Arebirth 阅读(1090) 评论(0) 推荐(0) 编辑
摘要: MongoDB系列---用户及权限管理02 删除用户 更新权限 阅读全文
posted @ 2019-11-03 17:14 Arebirth 阅读(715) 评论(0) 推荐(0) 编辑
摘要: MongoDB系列---入门安装操作 简介 阅读全文
posted @ 2019-10-29 22:03 Arebirth 阅读(521) 评论(1) 推荐(0) 编辑
摘要: 浅谈--hashCode方法 阅读全文
posted @ 2019-10-28 14:52 Arebirth 阅读(2590) 评论(0) 推荐(2) 编辑
摘要: ActiveMQ队列服务监听、Topic模型 阅读全文
posted @ 2019-10-15 14:02 Arebirth 阅读(617) 评论(0) 推荐(1) 编辑
摘要: dubbo搭建负载均衡、集群环境 阅读全文
posted @ 2019-10-14 11:27 Arebirth 阅读(10462) 评论(1) 推荐(2) 编辑
摘要: ActiveMQ学习总结------实战操作  1.ActiveMQ术语及API介绍   2.ActiveMQ 文本消息处理   3.ActiveMQ 对象消息处理 阅读全文
posted @ 2019-10-11 20:38 Arebirth 阅读(699) 评论(0) 推荐(0) 编辑
摘要: ActiveMQ学习总结------入门篇 安装 介绍 阅读全文
posted @ 2019-10-10 20:27 Arebirth 阅读(646) 评论(1) 推荐(2) 编辑
摘要: vsftpd上传文件大小为0(主动模式) 主动模式与被动模式 阅读全文
posted @ 2019-09-27 16:41 Arebirth 阅读(1653) 评论(0) 推荐(0) 编辑
摘要: ZooKeeper技术的极少以及ZooKeeper集群的搭建 阅读全文
posted @ 2019-09-21 20:48 Arebirth 阅读(831) 评论(0) 推荐(3) 编辑
摘要: SpringMVC 视图解析器 InternalResourceViewResolver 视图解析器流程 底层源码分析 阅读全文
posted @ 2019-09-13 19:04 Arebirth 阅读(4929) 评论(2) 推荐(1) 编辑
摘要: java 代理模式 --静态代理与动态代理 阅读全文
posted @ 2019-09-10 21:52 Arebirth 阅读(1162) 评论(0) 推荐(0) 编辑
摘要: 博文发布出发点: 1.现在有一个需求,就是从100个表中获得任意表中的数据,按照正常的思维模式和处理方式, 我们首先会创建100个实体类(累死!),然后通过resultType一一对应实体类,这种方式简直... 2.我们不通过创建实体类,来获得一个表中的所有数据,或者部分数据的键值对形式的值,我们该 阅读全文
posted @ 2019-09-02 16:17 Arebirth 阅读(4051) 评论(0) 推荐(0) 编辑
摘要: 最近在使用MyBatis操作Oracle数据库的时候,进行批量插入数据,思路是封装一个List集合通过Myabtis 的foreach标签进行循环插入,可是搬照Mysql的批量插入会产生 异常 ### Error updating database. Cause: java.sql.SQLSynta 阅读全文
posted @ 2019-09-01 19:28 Arebirth 阅读(9840) 评论(0) 推荐(0) 编辑
摘要: 再用MyBatis操作Oracle的时候,传入null值而引发的错误 异常信息: 当我们用MyBatis操作数据库的时候传入null值,而且没有加入jdbcType类型的时候就会引发上述这种错误类型, 因为MyBatis不知道这个地方要传入什么什么参数 解决方案: 1. 2. 全局配置 第二种配置方 阅读全文
posted @ 2019-08-30 18:05 Arebirth 阅读(17398) 评论(0) 推荐(0) 编辑
摘要: 在使用MyBatis操作Oracle数据库的时候,写模糊查询突然发现原本在MySql中正确的代码,在Oracle中报错,参数个数无效 异常信息; 经过查阅数个资料后得知Oracle的CONCAT函数不像MySql那样支持三个参数的拼接,需要把SQL语句修正为: 或者 以上仅对Oracle有效! PS 阅读全文
posted @ 2019-08-29 19:42 Arebirth 阅读(7377) 评论(0) 推荐(2) 编辑
摘要: 最近在使用java操作远程的mysql数据库的时候,第一次请求非常的慢,而且极其容易引起系统的崩溃报错连接超时 下面就这个问题来解决下把 大部分我们的mysql中的配置信息时这样的(本人的修改过,自查宿主的mysql信息) 其中的配置信息,网上也有很多的介绍,这里边就不详细的介绍了, 其中有一个(我 阅读全文
posted @ 2019-08-26 11:41 Arebirth 阅读(3035) 评论(1) 推荐(0) 编辑
摘要: Java 实现MD5加密 阅读全文
posted @ 2019-08-23 14:02 Arebirth 阅读(47034) 评论(1) 推荐(1) 编辑
摘要: 说起Servlet的接收处理请求的方式,想必各位都并不陌生,如doGet、doPost、service... 那么他们的背后是如何执行?服务器怎么选择知道的?我们就此来探讨一下 本节案例的代码奉上: web.xml部分 JSP部分 Servlet部分后续分析在具体展露。 下面我们来简单的写下具体用法 阅读全文
posted @ 2019-08-17 16:03 Arebirth 阅读(1299) 评论(0) 推荐(0) 编辑
摘要: 新从官网下载的Tomcat7和Tomcat8,在运行的时候都会有乱码的问题,就此发现问题,我们就给它就地正法! 经过初步的分析,问题产生的大概原因是由于Tomcat的log日志模块不识别中文的问题, 我们在Tomcat的目录bin/catalina.bat文件中可以发现 产生原因:如果没有设置环境变 阅读全文
posted @ 2019-08-16 15:33 Arebirth 阅读(10906) 评论(0) 推荐(3) 编辑
摘要: Nacos enable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat 阅读全文
posted @ 2021-01-15 00:08 Arebirth 阅读(3414) 评论(0) 推荐(1) 编辑
摘要: 列子: 1 function test(a, b) { 2 a = b || 1; 3 } 意思:如果b的值不为 undefined或者null的时候,那么a = b,否则 a = 1 阅读全文
posted @ 2020-12-05 11:03 Arebirth 阅读(464) 评论(0) 推荐(0) 编辑
摘要: Nacos启动异常:failed to req API:/api//nacos/v1/ns/instance after all servers([127.0.0.1:8848]) 阅读全文
posted @ 2020-12-02 10:47 Arebirth 阅读(20102) 评论(4) 推荐(1) 编辑
摘要: Mybatis-plus批量插入、批量修改数据saveBatch等速度缓慢 阅读全文
posted @ 2020-07-04 13:40 Arebirth 阅读(25820) 评论(1) 推荐(3) 编辑
摘要: idea启动 springboot The port may already be in use or the connector may be misconfigured. 阅读全文
posted @ 2020-06-22 19:36 Arebirth 阅读(1633) 评论(0) 推荐(0) 编辑
摘要: Mysql Too many connections 阅读全文
posted @ 2020-05-08 11:36 Arebirth 阅读(259) 评论(0) 推荐(0) 编辑
摘要: Linux启动Postfix报错 Job for postfix.service failed because the control process exited with error code. See "systemctl status postfix.service" and "journalctl -xe" for details. 阅读全文
posted @ 2020-04-26 09:03 Arebirth 阅读(326) 评论(0) 推荐(0) 编辑
摘要: count(*) count(id) count(1) count(字段) 阅读全文
posted @ 2020-03-24 09:59 Arebirth 阅读(773) 评论(0) 推荐(0) 编辑
摘要: Java节点流与处理器 阅读全文
posted @ 2020-03-15 16:22 Arebirth 阅读(121) 评论(0) 推荐(0) 编辑