摘要:原文地址 :http://blog.sina.com.cn/jacktee先来看下面这三段代码://Example1:public class Example1{ static void check(int a) { a++; } public static void main(String[]args) { int x=10; check(x); System.out.println(“Example1.x=”+x);}}//Example2:public class Example2 { static void check(St...
阅读全文
摘要:http://spring.io/blog/2010/01/05/task-scheduling-simplifications-in-spring-3-0/‘http://ekramalikazi.wordpress.com/2013/04/21/spring-task-execution-api-to-speeding-up-asynchronous-calls/
阅读全文
摘要:原文 :http://www.blogjava.net/ashutc/archive/2011/04/14/348270.html另两 参考博客 :http://kingtai168.iteye.com/blog/244002http://www.iteye.com/topic/244153使用 @Repository、@Service、@Controller 和 @Component 将类标识为 BeanSpring 自 2.0 版本开始,陆续引入了一些注解用于简化 Spring 的开发。@Repository 注解便属于最先引入的一批,它用于将数据访问层 (DAO 层 ) 的类标识为 Sp
阅读全文