alex_lo

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

12 2013 档案

JAVA方法传递参数:传值?传引用?
摘要:原文地址 :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... 阅读全文

posted @ 2013-12-27 10:59 alex_lo 阅读(13119) 评论(1) 推荐(1) 编辑

Spring Task Schedule 及多线程
摘要: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/ 阅读全文

posted @ 2013-12-26 10:01 alex_lo 阅读(1910) 评论(0) 推荐(0) 编辑

Spring 3.0 注解
摘要:原文 :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 阅读全文

posted @ 2013-12-26 09:58 alex_lo 阅读(417) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示