Examples of fooCall()


Examples of net.test.simple.core._06_aop.objs.FooBean.fooCall()

        FooBean fooBean2 = appContext.getInstance(CustomAnnoFooBean.class);
        //
        System.out.println("---fooBean1.fooCall()---");
        fooBean1.fooCall();
        System.out.println("---fooBean2.fooCall()---");
        fooBean2.fooCall();
    }
}
class WarpAnnoAop implements Module {
    public void loadModule(ApiBinder apiBinder) throws Throwable {
        /*绑定类型*/
 
View Full Code Here

Examples of net.test.simple.core._06_aop.objs.FooBean.fooCall()

    public void aopTest() throws IOException, URISyntaxException, InterruptedException {
        System.out.println("--->>aopTest<<--");
        AppContext appContext = Hasor.createAppContext(new WarpAop());
        //
        FooBean fooBean = appContext.getInstance(FooBean.class);
        fooBean.fooCall();
    }
}
class WarpAop implements Module {
    public void loadModule(ApiBinder apiBinder) throws Throwable {
        /*绑定类型*/
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.