51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#Eth
吴裕雄--天生自然轻量级JAVA EE企业应用开发Struts2Sping4Hibernate整合开发学习笔记:Spring_MethodCache
<?xmlversion="1.0"encoding="GBK"?><projectname="spring"basedir="."default=""><propertyname="src"value="src"/><propertyname="dest"value="cla...
代码星球
·
2020-05-24
吴裕雄
天生
自然
轻量级
JAVA
吴裕雄--天生自然轻量级JAVA EE企业应用开发Struts2Sping4Hibernate整合开发学习笔记:Spring_MethodInvokingFactoryBean
<?xmlversion="1.0"encoding="GBK"?><projectname="spring"basedir="."default=""><propertyname="src"value="src"/><propertyname="dest"value="cla...
代码星球
·
2020-05-24
吴裕雄
天生
自然
轻量级
JAVA
吴裕雄--天生自然轻量级JAVA EE企业应用开发Struts2Sping4Hibernate整合开发学习笔记:Spring_lookup-method
<?xmlversion="1.0"encoding="GBK"?><projectname="spring"basedir="."default=""><propertyname="src"value="src"/><propertyname="dest"value="cla...
代码星球
·
2020-05-24
吴裕雄
天生
自然
轻量级
JAVA
TestNG系列之四: TestNg依赖 dependsOnMethods
有时候,你可能需要在一个特定的顺序调用方法 执行原则: 1.被依赖的先执行;2. 再执行没配置依赖的,3.再执行需要依赖的;4.若无依赖关系,依次执行)一个方法有多个依赖时用空格隔开有两种依赖方式: 代码: packagecom.testcase...
代码星球
·
2020-05-23
TestNG
系列
之四
TestNg
依赖
Android InputMethodManager输入法简介
正文 一、结构publicfinalclassInputMethodManagerextendsObject Java.lang.Objectandroid.view.inputmethod.InputMethodManager 二、类概述 整个输入法框架(IMF)结构的核心API,应用程序之间进行调度...
代码星球
·
2020-05-23
Android
InputMethodManager
输入法
简介
response.setHeader各种用法
一秒刷新页面一次 response.setHeader("refresh","1"); 二秒跳到其他页面(登陆跳转)response.setHeader("refresh","2;URL=otherPagename"); 没有缓存:response.setDateHeader("expri...
代码星球
·
2020-05-23
response.setHeader
各种
用法
mockito static method wiki
https://github.com/powermock/powermock/wiki/MockitoUsage#a-full-example-for-mocking-stubbing--verifying-static-method...
代码星球
·
2020-05-23
mockito
static
method
wiki
org.mockito.exceptions.misusing.CannotStubVoidMethodWithReturnValue
错误原因:mock的时候,不能mock重载的方法解决方法:直接mock它的父类的方法org.mockito.exceptions.misusing.CannotStubVoidMethodWithReturnValue:'flush'isa*voidmethod*andit*cannot*bestubbedwitha*...
代码星球
·
2020-05-23
org.mockito.exceptions.misusing.CannotStubVoidMethodWithReturnValue
inside when() you don't call method on mock but on some other object
错误原因:调用静态方法,要事先引入静态类,否则mock的时候会默认为测试的类解决方法:@PrepareForTest({SecurityContextHolder.class})引入静态类注:@PrepareForTest在运行测试用例时,会创建一个新的org.powermock.core.classloader.Mo...
代码星球
·
2020-05-23
on
inside
when
you
don
org.mockito.exceptions.misusing.MissingMethodInvocationException: when() requires an argument which has to be 'a method call on a mock'
异常原因:1.mockito的jar包中缺少方法2.mock方法的时候,返回的是对象,而对象没有重写equals方法3.mock的实例方法调用方法错误解决方法:1.用powermock中的api解决问题,在类中添加:@RunWith(PowerMockRunner.class)2.如果是第二种情况,则需要重写返回对象的...
代码星球
·
2020-05-23
org.mockito.exceptions.misusing.MissingMethodInvocationException
when
requires
an
argument
junit测试时报No runnable methods错误的解决方法
1.因为你@Test时import的是@org.testng.annotations.Test所以会报错解决方法:改为importorg.junit.Test;就可以了...
代码星球
·
2020-05-23
junit
测试
时报
No
runnable
FastMethod和PropertyUtils两种反射方法的性能比较
这两个类都提供反射方法的实现,性能对比如下:循环条件是:1亿次结论:PropertyUtils提供的getXXX和setXXX反射方法的性能是FastMethod的三倍以下是测试方法:首先是FastMethod的getXXX方法,如图:然后是PropertyUtils的getXXX方法,如图:其次是FastMethod...
代码星球
·
2020-05-23
FastMethod
PropertyUtils
两种
反射
方法
用IDEA时,类/方法提示"class/method **** is never used"
https://segmentfault.com/q/1010000005996275?_ea=978306 清理下缓存试下。在File->InvalidateCaches下,会重启idea...
代码星球
·
2020-05-19
IDEA
方法
提示
quotclass
method
Linux网卡驱动程序对ethtool的支持和实现
Linux的一个显著特点就是其强大的网络功能,Linux几乎支持所有的网络协议,并在这些协议基础上提供了丰富的应用。对Linux网络管理的重要性不言而喻,这些管理依赖于网络工具,比如最常用的ifconfig,route,ip,ethtool等,其中ethtool提供了强大的网卡及网卡驱动管理能力,其具体的实现框架和网络...
代码星球
·
2020-04-21
Linux
网卡
驱动程序
ethtool
支持
centos7里没有ifcfg-eth0只有 ifcfg-ens33(没有Eth0网卡)
https://www.cnblogs.com/feixiangtk/p/6819118.html CentOS7系统安装完毕之后,输入ifconfig命令发现没有eth0,不符合我们的习惯。而且也无法远程ssh连接,这个问题解决起来还算简单: 一,永久搞定 1.进入目录/etc/sysconfi...
代码星球
·
2020-04-18
没有
centos7
ifcfg-eth0
只有
ifcfg-ens33
首页
上一页
...
14
15
16
17
18
...
下一页
尾页
按字母分类:
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
其他