Problem Description Given a string containing only 'A' - 'Z', we could encode it using the following method:1. Each sub-string containing k same chara ...
分类:
其他好文 时间:
2020-03-04 00:28:32
阅读次数:
76
mysql 的一个从库报错: Could not execute Write_rows event on table xxx.xxxx_tmp_tj; Error writing file '/tmp/MLLGyECY' (Errcode: 28 - No space left on device) ...
分类:
其他好文 时间:
2020-03-03 19:16:09
阅读次数:
248
今天遇到一个我自己很少遇见的问题,我是用mybatis自动生成的entity,和dao以及mapper 。在我对数据库进行添加数据时发现mybatis报错了。Could not set property ‘id’ of ‘com.*.sys.entity’ with value ‘********’ ...
分类:
其他好文 时间:
2020-03-03 13:05:59
阅读次数:
265
1、登录过程中报以下错误 2、分析 提示redis连接异常,意味着后台redis服务没起 3、解决 首先ps -ef |grep redis 发现redis果然没起 启动redis: 首先进入redis目录下: cd /usr/local/redis-5.0.5/ 启动redis ok了 ...
分类:
其他好文 时间:
2020-03-02 20:38:32
阅读次数:
167
public static byte[] getFileByteArray(File file) { long fileSize = file.length(); if (fileSize > Integer.MAX_VALUE) { System.out.println("file too big ...
分类:
编程语言 时间:
2020-02-29 00:18:21
阅读次数:
222
问题分析及解决方案 问题原因: Mybatis没有找到合适的加载类,其实是大部分spring - datasource - url没有加载成功,分析原因如下所示. DataSourceAutoConfiguration会自动加载. 没有配置spring - datasource - url 属性. ...
分类:
Web程序 时间:
2020-02-27 20:54:34
阅读次数:
84
The cause behind the error Low disk space could be a reason for MySQL table being marked as “crashed”. When you have low space on your disk, some of t ...
分类:
其他好文 时间:
2020-02-27 20:49:35
阅读次数:
70
1.redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool 查看代码:出现在创建jedisCluster对象这里,创建的对象,里面的host为127.0.0.0.1 ...
分类:
其他好文 时间:
2020-02-27 19:00:49
阅读次数:
72
问题:查看防火墙状态时报错service iptables status 解决方案 在CentOS 7或RHEL 7或Fedora中防火墙由firewalld来管理,当然你可以还原传统的管理方式,或则使用新的命令进行管理。本文中将还原传统的管理方式。 cd /etc/sysconfig ls -l ...
分类:
其他好文 时间:
2020-02-25 23:16:35
阅读次数:
101
问题:关闭防火墙时报错service iptables status Redirecting to /bin/systemctl status iptables.serviceUnit iptables.service could not be found. 解决方案: cd /etc/syscon ...
分类:
其他好文 时间:
2020-02-25 13:09:48
阅读次数:
89