Clean up SpEL examples

This commit is contained in:
David Morley
2016-04-14 06:08:48 -05:00
parent 2ce4f5acd1
commit 4ab9fe6602
2 changed files with 54 additions and 48 deletions
@@ -9,7 +9,7 @@ public class SpelProgram {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
SpelConditional spelCollections = (SpelConditional) context.getBean("spelConditional");
// Here you can choose which bean do you want to load insted of spelConditional: spelCollections, spelLogical, etc.
// Here you can choose which bean do you want to load instead of spelConditional: spelCollections, spelLogical, etc.
System.out.println(spelCollections);
}