51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#Ts
requests 学习笔记
除了get方式外还有post等等注意字典里值为 None 的键都不会被添加到URL的查询字符串里importrequestsgetpara={"key1":"value1","keu2":"value2"}r=requests.get('https://api.g...
代码星球
·
2020-04-04
requests
学习
笔记
MySQL中exists和in的区别及使用场景
exists和in的使用方式: 1#对B查询涉及id,使用索引,故B表效率高,可用大表-->外小内大1select*fromAwhereexists(select*fromBwhereA.id=B.id);1#对A查询涉及id,使用索引,故A表效率高,可用大表-->外大内小1select*fromAwhe...
代码星球
·
2020-04-04
MySQL
exists
in
区别
使用
Comparison method violates its general contract 解决
java.lang.IllegalArgumentException:Comparisonmethodviolatesitsgeneralcontract!原因JDK7中的Collections.Sort方法实现中,如果两个值是相等的,那么compare方法需要返回0,否则 可能 会在排序时抛错,而...
代码星球
·
2020-04-04
Comparison
method
violates
its
general
Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: connect timed out
问题:java连接不上redis。异常信息:Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: connect time...
代码星球
·
2020-04-04
Caused
by
redis.clients.jedis.exceptions.JedisConnectionException
java.net.SocketTimeoutException
connect
详述 hosts 文件的作用及修改 hosts 文件的方法
hosts是一个没有扩展名的系统文件,其基本作用就是将一些常用的网址域名与其对应的IP地址建立一个关联“数据库”。当用户在浏览器中输入一个需要登录的网址时,系统会首先自动从hosts文件中寻找对应的IP地址,一旦找到,系统就会立即打开对应网页,如果没有找到,则系统会将网址提交DN...
代码星球
·
2020-04-04
hosts
文件
详述
作用
修改
Aliyun STS Java SDK示例
packagecom.aliyun.oss.demo;importcom.aliyuncs.DefaultAcsClient;importcom.aliyuncs.exceptions.ClientException;importcom.aliyuncs.http.MethodType;impo...
代码星球
·
2020-04-04
Aliyun
STS
Java
SDK
示例
ToDoList--HttpMediaTypeNotSupportedException
org.springframework.web.HttpMediaTypeNotSupportedException:Contenttype'application/x-www-form-urlencoded;charset=UTF-8'notsupportedatorg.springframework.w...
代码星球
·
2020-04-04
ToDoList--HttpMediaTypeNotSupportedException
limits the number of elements in an IN predicate to 2100 entries.
org.hibernate.engine.jdbc.spi.SqlExceptionHelper131-[TxId:f68db5f5b-qmgnc^1561639897640^271530,SpanId:360544073895766848]Theincomingtabulardatastream(TDS)remote...
代码星球
·
2020-04-04
limits
the
number
of
elements
注解 @EnableFeignClients 工作原理
概述在Springcloud应用中,当我们要使用feign客户端时,一般要做以下三件事情:使用注解@EnableFeignClients启用feign客户端;示例:@SpringBootApplication@EnableFeignClientspublicclassTestApplication{publ...
代码星球
·
2020-04-04
注解
@EnableFeignClients
工作
原理
@EnableFeignClients 客户端详细
在Springcloud应用中,当我们要使用feign客户端时,一般要做以下三件事情:1.使用注解@EnableFeignClients启用feign客户端;示例:@SpringBootApplication@EnableFeignClientspublicclassTestApplication{publicstat...
代码星球
·
2020-04-04
@EnableFeignClients
客户端
详细
getOutputStream() has already been called for this response
错误日志里偶尔会有getOutputStream()hasalreadybeencalledforthisresponse这个错误最近发现了高概率复现条件,所以顺手解决了一下: 首先根据这个错误关键信息,得知是错误产生原因是response.getWriter()和response.getOutp...
代码星球
·
2020-04-04
getOutputStream
has
already
been
called
我的ImageIO.write ByteArrayOutputStream为什么这么慢?
File.createTempFile(prefix,suffix),创建一个临时文件,再使用完之后清理即可。但是遇到如下两个坑:Stringprefix="temp";Stringsuffix=".txt";FiletempFile=File.createTempFile(prefix,suffix);以上代码中,需...
代码星球
·
2020-04-04
我的
ImageIO.write
ByteArrayOutputStream
为什么
这么
VS代码段扩展Snippet Designer is a Visual Studio plug in which allows you to create and search for snippets inside the IDE
https://visualstudiogallery.msdn.microsoft.com/803e021c-fce2-4637-a05d-bb078cffc492?SRC=VSIDE https://github.com/mmanela/SnippetDesigner ...
代码星球
·
2020-04-04
VS
代码
段扩展
扩展
Snippet
osharp3 整合 dbcontextscope 文章2 将dbcontext的创建收回到ioc管理
osharp3整合dbcontextscope后,,dbcontextscope对dbcontext管理的很好,做到,用到时创建,不用时销毁,下面看一个traceaspx.page:EndPreInitaspx.page:BeginInitaspx.page:EndInitaspx.page:BeginInitComp...
代码星球
·
2020-04-04
osharp3
整合
dbcontextscope
文章
dbcontext
osharp3使用经验:整合DbContextScope 文章 1
osharp3的事务处理是跳过savechangeing方法来控制的,没有DbContextScope专业DbContextScope管理dbcontext的优劣本文不讨论整合过程:1、在.Data.Entity/Extensions/ServiceCollectionExtensions.cs注入1DbContext...
代码星球
·
2020-04-04
osharp3
使用
经验
整合
DbContextScope
首页
上一页
...
187
188
189
190
191
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他