文章列表
❑Linux Kernel Core services (including hardware drivers, process and memory management,security, network, and power management) are handled by a Linux 2.6 kernel. The kernel alsoprovides an abstraction layer between the hardware and the remainder of the stack.❑ Libraries Running on top of the k ...
方法一:ClassPathXmlApplicationContext factory=new ClassPathXmlApplicationContext("applicationContext.xml"); 方法二: Resource resource = new FileSystemResource("applicationContext.xml");BeanFactory factory = new XmlBeanFactory(resource);方法三:ClassPathResource resource = new ...
- 2009-07-17 14:52
- 浏览 1298
- 评论(0)
什么是IOC 关键词: spring IOC(控制反转) 近日,组长要我们每两个人学一种技术,让我和另一个组员学习spring,我就看了一些资料,得知spring是面向方面编程(AOP)和控制反转 (IOC) 容器。 那什么是IOC呢,在网上搜到了一非常有意思的讲解。 IoC就是Inversion of Control,控制反转。在Java开发中,IoC意味着将你设计好的类交给系统去控制,而不是在你的类内部控制。这称为控制反转。 下面我们以几个例子来说明什么是IoC 假设我们要设计一个Girl和一个Boy ...
- 2009-07-17 11:41
- 浏览 677
- 评论(0)