Introduction to Spring and Configuration using annotations
Part I - Basic workshop
public static void main(String[] args) {
ApplicationContext ac=new ClassPathXmlApplicationContext("applicationContext.xml");
GrammarChecker gc=ac.getBean(GrammarChecker.class);
System.out.println(gc.check("la la la "));
}Part II
Last updated
Was this helpful?