51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#F
alibaba druid 在springboot start autoconfig 下的bug
标签(空格分隔):druidspringbootstartautoconfig背景发现、分析过程总结最近在使用alibabadruid进行多数据源连接的时候无意中发现一个小bug,已经提交githubissue官方已经fix。issue地址:https://github.com/alibaba/druid/issues...
代码星球
·
2020-04-04
alibaba
druid
springboot
start
autoconfig
getOutputStream() has already been called for this response
错误日志里偶尔会有getOutputStream()hasalreadybeencalledforthisresponse这个错误最近发现了高概率复现条件,所以顺手解决了一下: 首先根据这个错误关键信息,得知是错误产生原因是response.getWriter()和response.getOutp...
代码星球
·
2020-04-04
getOutputStream
has
already
been
called
node.js – 服务器端的客户端证书验证,DEPTH_ZERO_SELF_SIGNED_CERT错误
我正在使用节点0.10.26并尝试建立与客户端验证的https连接. 服务器代码: varhttps=require('https');varfs=require('fs');process.env.NODE_TLS_REJECT_UNAUTHORIZED="0";varoptions={key:f...
代码星球
·
2020-04-04
node.js
服务器
客户端
证书
验证
Error creating bean with name 'tomcatEmbeddedServletContainerFactory ' (or a BeanPostProcessor involved) returned null
org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration$EmbeddedTomcatorg.springframework.boot.autoconfigure.web.EmbeddedServ...
代码星球
·
2020-04-04
Error
creating
bean
with
name
在Java8的foreach()中不能break,如果需要continue时,可以使用return
今天使用lambda表达式处理集合时,发现对return、break以及continue的使用有点迷惑,于是自己动手测试了一下,才发现在使用foreach()处理集合时不能使用break和continue这两个方法,也就是说不能按照普通的for循环遍历集合时那样根据条件来中止遍历,而如果要实现在普通for循环中的效果时...
代码星球
·
2020-04-04
Java8
foreach
不能
break
如果
CompletableFuture 专题
/***@Auther:cheng.tang*@Date:2019/3/2*@Description:*/packagecom.tangcheng.learning.concurrent;importlombok.extern.slf4j.Slf4j;importorg.junit.Test;importj...
代码星球
·
2020-04-04
CompletableFuture
专题
winform只能有一个实例运行且打开已运行窗口
staticclassProgram{privatestaticMutexonlyOne;[STAThread]staticvoidMain(){onlyOne=newMutex(true,Process.GetCurrentProcess().ProcessName);if(onlyOne.WaitOne(0,fal...
代码星球
·
2020-04-04
运行
winform
只能
有一个
实例
webapi输入验证过滤器ValidationActionFilter
publicclassvalidationActionFilter:ActionFilterAttribute{publicoverridevoidOnActionExecuting(System.Web.Http.Controllers.HttpActionContextactionContext){varmodel...
代码星球
·
2020-04-04
webapi
输入
验证
过滤器
ValidationActionFilter
Code First Migrations: Making __MigrationHistory not a system table
https://blog.oneunicorn.com/2012/02/27/code-first-migrations-making-__migrationhistory-not-a-system-table/ CodeFirstMigrations usesatablecalled _...
代码星球
·
2020-04-04
Code
First
Migrations
Making
MigrationHistory
ASP.NET WebForm中用async/await实现异步
1.在.aspx中添加异步标记<%@PageLanguage="C#"Async="true"%>2.在.aspx.cs或者.ascx.cs(用户控件)中添加异步方法privateasyncTaskGetMyPosts(){varposts=awaitServiceFactory.BlogPostSevic...
代码星球
·
2020-04-04
ASP.NET
WebForm
中用
async
await
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
C# Refactorings VS插件
http://vsrefactoringessentials.com/Features/Refactorings-CSharp...
代码星球
·
2020-04-04
Refactorings
VS
插件
Autofac和DynamicProxy2搭配实现Aop动手训练
http://www.cnblogs.com/zhengwl/p/5433181.htmlAop含义:aspect-orientedprogramming实现工具介绍 Autofac是一个比较流行的Ioc组件,DynamicProxy2是theCastleProjectcore的一部分,提供了一个拦截框架...
代码星球
·
2020-04-04
Autofac
DynamicProxy2
搭配
实现
Aop
捕获EF提交异常
try{}catch(DbEntityValidationExceptiondbex){stringerrMsg=string.Empty;foreach(vareveindbex.EntityValidationErrors){errMsg+=string.Format("Entityoftype"{0}"insta...
代码星球
·
2020-04-04
捕获
EF
提交
异常
Code First 迁移
https://msdn.microsoft.com/zh-cn/data/jj591621DataAccessandStorage>学习>EntityFramework>开始操作>CodeFirst迁移本演练将提供对实体框架中CodeFirst迁移的概述。您可以完成整个演练,也可以跳至自己感兴...
代码星球
·
2020-04-04
Code
First
迁移
首页
上一页
...
1406
1407
1408
1409
1410
...
下一页
尾页
按字母分类:
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
其他