摘要:
可以获得在 debug configration 里面配置的参数, 比如: -Dhttp.proxyPort=9095 可以通过System.getProperty("http.proxyPort"))获得。 String s= "AAA%sBBB"; String s1= String.forma 阅读全文
摘要:
In the above example, it seems that instance initializer block is firstly invoked but NO. Instance intializer block is invoked at the time of object c 阅读全文
摘要:
If the superclass method does not declare an exception If the superclass method does not declare an exception, subclass overridden method cannot decla 阅读全文
摘要:
Java单元测试之代码覆盖率-JaCoCo 博客分类: Java 代码覆盖率测试的工具,比较常用的如下: (1)开源: JaCoCo http://www.eclemma.org/jacoco/ Cobetura http://cobertura.sourceforge.net/ Emma http 阅读全文
摘要:
通过工厂方法配置bean 通过调用静态工厂方法创建bean 通过静态工厂方法创建bean是将对象创建的过程封装到静态方法中。当客户端需要对象时,只需要简单地调用静态方法,而不关心创建对象的细节。 要声明通过静态方法创建的bean,需要在bean的class属性里指定拥有该工厂的方法的类,通知在fac 阅读全文
摘要:
有时候在创建某个Bean之前,需要先创建另一个Bean,这时可以使用depends-on属性。 public class Shared { private static String value; public static String getValue() { return value; } p 阅读全文
摘要:
问题描述---为什么Bean配置需要能够继承? 在Spring Ico容器里配置Bean时,可能存在这样一种情况:多个Bean的配置有一部分是相同的,如果在每个Bean里都进行配置,就会显得很麻烦。 相同的配置往往有两种情况:1.多个Bean需要注入相同的Bean;2.多个<bean>元素的属性相同 阅读全文
摘要:
先让我们看代码吧!以下代码为在“Spring3事务管理——基于tx/aop命名空间的配置”基础上修改。首先修改applicationContext.xml如下:?1234567891011121314151617181920212223242526272829303132……实现类代码:?12345... 阅读全文
摘要:
使用步骤:步骤一、在spring配置文件中引入命名空间步骤二、具有@Transactional 注解的bean自动配置为声明式事务支持 步骤三、在接口或类的声明处 ,写一个@Transactional.要是只在接口上写, 接口的实现类就会继承下来... 阅读全文
摘要:
JDK5中的一个亮点就是将Doug Lea的并发库引入到Java标准库中。Doug Lea确实是一个牛人,能教书,能出书,能编码,不过这在国外还是比较普遍的,而国内的教授们就相差太远了。一般的服务器都需要线程池,比如Web、FTP等服务器,不过它们一般都自己实现了线程池,比如以前介绍过的Tomcat... 阅读全文