11 2019 档案
摘要:有些时候是服务端响应的太慢而本地链接又关闭引起的读取失败。 这时候可以调整本地链接关闭的时间。 例如以下设置超时关闭的时间为120秒。 OkHttpClient okHttpClient = new OkHttpClient().newBuilder().connectTimeout(10, Tim
阅读全文
摘要:org.apache.ibatis.builder.IncompleteElementException: Could not find result map java.lang.Integer遇到这种问题,一般都是因为在xml中基本类型返回属性的属性名写成了resultMap。由于Mybatis的
阅读全文
摘要:创建索引alter table tbl_name add primary key (column_list):该语句添加一个主键,这意味着索引值必须是唯一的,且不能为 null。 alter table tbl_name add unique index_name (column_list):这条语
阅读全文
摘要:1055 - Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'rpacloudsit.t.app_id' which is not functionally depen
阅读全文