Java tutorial
package lydichris.smashbracket; /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author cgmcandrews */ import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; @SpringBootApplication public class Application { public static void main(String[] args) { ApplicationContext context = new ClassPathXmlApplicationContext(new String[] { "Beans.xml" }); SpringApplication.run(Application.class, args); } }