Package org.springmodules.samples.hivemind.service

Examples of org.springmodules.samples.hivemind.service.ISampleService


   */
  public static void main(String[] args) {
    ClassPathXmlApplicationContext ctx = null;
    try {
      ctx = new ClassPathXmlApplicationContext("/applicationContext.xml");
      ISampleService service = (ISampleService) ctx.getBean("hivemindService");
      service.executeService("sample");

    }
    catch (Exception ex) {
      log.error("Error during execution", ex);
    }
View Full Code Here

TOP

Related Classes of org.springmodules.samples.hivemind.service.ISampleService

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.