#RG

spring aop中targetSource的理解

  TargetSource(目标源)是被代理的target(目标对象)实例的来源。TargetSource被用于获取当前MethodInvocation(方法调用)所需要的target(目标对象),这个target通过反射的方式被调用(如:method.invode(target,args))。换句话说,proxy(...

oracle中merge into用法总结

mergeinto的形式:MERGE INTO table_namealias1 USING(table|view|sub_query)alias2 ON(joincondition) WHENMATCHEDTHENUPDATESETalias1.col1=:col1_...

org.eclipse.jdt.internal.compiler包下的类找不到

到maven库上下载jar包:org.eclipse.jdt.core-3.13.jar<!--https://mvnrepository.com/artifact/org.eclipse.jdt/org.eclipse.jdt.core--><dependency><groupId>...

c3p0 APPARENT DEADLOCK!!! Creating emergency threads for unassigned pending tasks

2018-01-0415:02:03,319---com.mchange.v2.async.ThreadPoolAsynchronousRunner:com.mchange.v2.async.ThreadPoolAsynchronousRunner$DeadlockDetector@4d6c4ebb--APPARENT...

java.lang.NoClassDefFoundError: org/junit/rules/TestRule

错误原因:通过定位发现是找不到TestRule这个类,检查项目引用的Junit版本为4.7,发现TestRule是在Junit版本4.10后添加的新特性解决方法:把junit版本由4.7改成4.10...

org.mockito.exceptions.misusing.CannotStubVoidMethodWithReturnValue

错误原因:mock的时候,不能mock重载的方法解决方法:直接mock它的父类的方法org.mockito.exceptions.misusing.CannotStubVoidMethodWithReturnValue:'flush'isa*voidmethod*andit*cannot*bestubbedwitha*...

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.如果是第二种情况,则需要重写返回对象的...

java.lang.IllegalArgumentException: Request header is too large的解决方法

<Connectorport="8080"protocol="HTTP/1.1"              connectionTimeout="20000" &n...

oracle中v$sga_target_advice的用途

v$sga_target_advice:该视图可用于建议SGA大小设置是否合理。  SELECTa.sga_size,--sga期望大小         a.sga_size_factor,--期望sga大小与...

oracle中视图V$PGA_TARGET_ADVICE的用法

看一下这个视图能给我们带来什么样的信息(视图中每个列都很有帮助):sys@ora10g>SELECT  pga_target_for_estimate/1024/1024"PGA(MB)", 2       &nb...

java -jar Incompatible argument to function

原因分析:jar包版本问题解决方法:到工程中查看代码引用的jar包版本是多少,然后升级jar包,就可以了!...

Errors occurred while updating the change sets for SVNStatusSubscriber org.apache.subversion.javahl.

原因:eclipse-svn插件版本过低,导致不能识别svn客户端中的代码,从而报错解决方法:1、点击“Help”下拉菜单中的“EclipseMarketplace”,2、在弹出的窗口中,点击“Popular”,在里面找到“Subecl...

ie7中position:fixed定位后导致margin:0 auto;无效

布局网页时,需要把header固定在上方。直接使用position:fixed;现代浏览器以及ie8以上均正常显示,但是ie7中,header里面的子元素设置的水平居中并没有效果。做了各种尝试,都没有解决。经过网上查询,固定定位必须要写left和top值,至此问题解决。...

jenkins错误413 Request Entity Too Large<

jenkins-nginx--sonar1/sonar2  ...
首页上一页...5859606162...下一页尾页