首页 > 代码库 > AopTest

AopTest

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();
    }

}

技术分享

AopTest