Package org.dayatang.ioc.test

Examples of org.dayatang.ioc.test.MyService1


*/
public class ServiceFactory implements FactoryBean<MyService1> {

    @Override
    public MyService1 getObject() throws Exception {
        return new MyService1();
    }
View Full Code Here

TOP

Related Classes of org.dayatang.ioc.test.MyService1

Copyright © 2018 www.massapicom. 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.