- 博客(13)
- 收藏
- 关注
原创 kex_exchange_identification: Connection closed by remote host问题解决
kex_exchange_identification: Connection closed by remote host问题解决
2022-06-01 18:08:17 36838 1
原创 go io.readfull 理解
在 Go 语言中, io包为 I/O 原语提供基本接口。它的主要工作是封装这种原语之王的持续实现。 Go 语言中的ReadFull()函数用于从指定的读取器“r”读取到指定的缓冲区“buf”,并且复制的字节恰好等于指定缓冲区的长度。而且,这个函数是在io包下定义的。在这里,您需要导入“io”包才能使用这些功能。句法:func ReadFull(r Reader, buf []byte) (n int, err error)这里,“r”是读取器声明,“buf”是指定长度的缓冲区声明。返回值:返回指定
2022-05-07 21:29:36 3760
原创 Springboot整合mybatis-plus进行测试时报错:java.lang.IllegalStateException
Springboot整合mybatis-plus进行测试时报错报错的具体信息为:java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test at org.springframework.util.Assert.state(Assert.jav
2022-04-20 21:24:12 917
原创 mybatis使用resultMap无法读取数据
在使用mybatis读取数据时显示数据库执行查询语句select * from sys_user_role us, user u , sys_role r where us.userId=u.id and us.roleId=r.id显示的数据在UserMapper.xml的配置 <resultMap id="roleMap" type="user"> <result column="userId" property="id"></resul
2022-04-15 17:09:39 2001
原创 IDEA mybatis报错com.github.pagehelper.PageHelper cannot be cast to org.apache.ibatis.plugin.
mybatis配置分页助手插件时报错原核心配置文件为 :<plugins> <plugin interceptor="com.github.pagehelper.PageHelper"> <property name="dialect" value="mysql"/> </plugin> </plugins>查看com.github.pagehelper安装包后发现PageI
2022-04-07 16:20:18 802
原创 IDEA 报错Unknown system variable ‘tx_isolation‘ at
IDEA 报错Unknown system variable ‘tx_isolation’ atjava.sql.SQLException: Unknown system variable ‘tx_isolation’ at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1094) at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4208) at com.mysql.jdbc
2022-03-27 20:45:01 730 1
转载 java中static关键字介绍
一、static关键字的特点:static是一个修饰符,用于修饰类的成员方法、类的成员变量,另外可以编写static代码块来优化程序性能。static修饰成员方法static修饰的方法一般称作静态方法,由于静态方法不依赖于任何对象就可以进行访问,因此对于静态方法来说,是没有this的,因为它不依附于任何对象,既然都没有对象,就谈不上this了。并且由于这个特性,在静态方法中不能访问类的非静态成员变量和非静态成员方法,因为非静态成员方法/变量都必须依赖具体的对象才能够被调用。 但是要注意的是,虽
2021-10-21 13:58:40 280
原创 使用c进行折半查找(元素可重复)
使用折半查找算法,题目要求如图:下面展示 处理代码。#include<stdio.h>int main(){ int N; printf("请输入要查询的有序数组的长度:\n"); scanf("%d", &N); int array[N]; printf("请输入要查询的数组:\n"); for(int i = 0; i < N; i++){ scanf("%d", &array[i]); } //printf("%d", sizeof(a
2021-10-09 16:32:11 654
原创 OSError解决办法
OSError: [WinError 1455] 页面文件太小,无法完成操作。 Error loading “E:\devInstall\pytorch\Anaconda3\envs\pytorch\lib\site-packages\torch\lib\caffe2_detectron_ops_gpu.dll” or one of its dependencies. 解决办法在进行classSR训练的时候train.py报错,参考链接: csdn.blog.进行了电脑页面大小配置的修改配置截图:
2021-10-09 16:25:25 10937 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人