package phz.springframework.service.impl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class AopTest {
public static void testHelloworld() {
ApplicationContext context = new ClassPathXmlApplicationContext("helloWorld.xml");
IHelloWorldService hws = context.getBean("helloWorldService", IHelloWorldService.class);
hws.sayHello();
}
public static void main(String[] args) {
testHelloworld();
}
}
时间: 2024-12-27 14:45:22