Skip to content

Instantly share code, notes, and snippets.

@omidp
Created December 29, 2013 07:21
Show Gist options
  • Save omidp/8168270 to your computer and use it in GitHub Desktop.
Save omidp/8168270 to your computer and use it in GitHub Desktop.
spring Bootstrap
public class Bootstrap {
    private static final Logger logger= LoggerFactory.getLogger(Bootstrap.class);
    public static void main(String[] args) {
        ApplicationContext context=new ClassPathXmlApplicationContext("META-INF/spring/...-context.xml");
        CustomerService customerService=(CustomerService) context.getBean("customerService");
...
        }
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment