- 博客(13)
- 收藏
- 关注
转载 ERROR: child process failed, exited with 1
https://www.cnblogs.com/zlslch/p/6932368.html
2022-05-05 00:19:35
1924
原创 HashMap部分源码解读
HashMap源码Hash table based implementation of the Map interface. This implementation provides all of the optional map operations, and permits null values and the null key. (The HashMap class is roughly equivalent to Hashtable, except that it is unsynchroniz
2021-08-24 09:59:48
234
原创 截取文件后缀
//截取文件后缀String s = "frank.mp3"; int lastIndexOf = s.lastIndexOf("."); String suffix = s.substring(lastIndexOf + 1); System.out.println(suffix);
2021-08-21 09:26:07
270
原创 重写toString和equals方法
重写toString和equals方法section 1 重写toString方法源码:/** * Returns a string representation of the object. In general, the * {@code toString} method returns a string that * "textually represents" this object. The result should * be a concise b
2021-07-26 15:49:32
310
1
原创 Redis修改端口号后无法连接的问题
将redis配置文件中的端口号6379修改为6380后,除下下图情况:由图中可以看出,6380端口的redis服务已经启动,但是输入命令./redis-cli连接客户端会报错Could not connect to Redis at 127.0.0.1:6379: Connection refused原因:修改端口号之后,运行客户端需要指定端口号[root@localhost bin]# ./redis-cli -p 6380127.0.0.1:6380> 》》》》》》记录学习
2021-03-31 17:05:31
2992
原创 关于Linux中忘记MySQL密码重置问题【个人错误记录】
今天由于误操作,将mysql用户密码改掉了,重新登录发现新修改的密码无法登录,于是进行了如下操作修改密码,每个电脑情况不一样,本文的操作仅供参考。根据路径找到配置文件vim /etc/my.cnf,(本人由于不熟悉linux操作,所以直接找到该文件去修改了),打开my.cnf2. 在[mysqld]下方插入skip-grant-tables,跳过权限验证3.重启mysql服务:service mysqld restart直接输入用户名登录# mysql -uroot 登陆成功:
2021-03-28 00:32:50
159
原创 SpringBoot整合JDBC数据库时区错误【学习路上的点点滴滴】
错误报告:There was an unexpected error (type=Internal Server Error, status=500).Failed to obtain JDBC Connection; nested exception is java.sql.SQLException: The server time zone value '中国标准时间' is unrecognized or represents more than one time zone. You must c
2021-03-26 23:27:08
249
1
转载 idea 如何设置滚轮调整字体大小
https://jingyan.baidu.com/article/fb48e8be6eb1c22e622e149f.html
2021-03-19 23:30:22
219
转载 byte、char、short运算【转】
/**表达式类型提升规则:所有的byte,short,char型的值将被提升为int型,一个操作数是long,结果是long型,一个操作数是float,结果是float型,一个操作数是double,结果是double型,fianl修饰的变量不会自动改变类型, 当2个final修饰相操作时,结果会根据左边变量的类型…@author y 2017-8-1*/public class Test { public static void main(String[] args) {
2021-03-13 00:53:47
431
原创 git创建分支修改内容后,主分支也跟着改变
今天在使用git的时候发现如下小问题:不知道刚开始使用git的你有没有跟我一样也遇到过这样的问题: -> git创建分支修改内容后,主分支也跟着改变,说好的分支之间各不影响呢? <-
2021-03-06 09:19:13
9106
2
原创 Javascript 模拟敲七算法
学习Javascript第五天,自己编写的一个模拟敲七游戏算法:<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> </head> <body> <script type="text/javascript"> function seven(n){ if(n < 0){
2021-01-30 18:44:16
391
原创 Fatal error compiling: 错误: 无效的目标发行版:14.0.2 -> [Help 1]
这两天刚开始学习maven的时候出现了以下错误:[ERROR] 不再支持源选项 5,请使用 7 或更高版本的解决办法参考了多篇博主的解决办法,在settings.xml文件重添加jdk的版本控制说明如下:本人首次错误改法:<profile> <id>jdk-14.0.2</id> <activation> <activeByDefault>true</activeByDefault>
2020-12-22 15:26:32
924
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人