Reference:
1. 60秒入门教程: http://gabriel.jarchitect.org/spring/index.html
必需的jar文件包括: spring-core.jar, common-logging.jar, 在IDEA中,
运行Java虚拟机的目录并不是classes目录, 因此它在当前目录中无法找到
"bean.xml"文件, 使用下面的代码:
import org.springframework.core.io.*;
/* Read the configuration file from classpath */
Resource res = new ClassPathResource("bean.xml");
XmlBeanFactory factory = new XmlBeanFactory(res);
Tag Archives: spring
Stand alone的Spring示例 (AOP)
Referneces:
1. An Introduction to Aspect-Oriented Programming with the Spring Framework, Part 1: http://www.onjava.com/lpt/a/4994
2. http://www.springframework.org/docs/wiki/Spring_AOP_Framework.html
3. SpringFrameWork中AOP的简单使用: http://blog.csdn.net/ylong/archive/2004/07/10/38482.aspx
I just copy the code from the onjava one, and implement a demo with
IDEA 4.5. But a minor change for the same issue in IoC example:
import org.springframework.context.support.ClassPathXmlApplicationContext;
// Read the configuration file from classpath
ApplicationContext ctx = new ClassPathXmlApplicationContext( "springconfig.xml");
必须的jar文件包括:
aopalliance.jar, commons-logging.jar, jakarta-oro-xxx.jar, spring-aop.jar, spring-context.jar, spring-core.jar.