GenericXmlApplicationContext ctx = new GenericXmlApplicationContext();
ctx.load("classpath:app-context.xml");
ctx.refresh();
PreferencesService prefService = ctx.getBean("preferencesService", PreferencesService.class);
ClientService cs = ctx.getBean("clientService", ClientService.class);
Users user = (Users) session.getAttribute("userSession");
if (user == null){
response.sendRedirect("Login.jsp");
}
if (!user.getEnabled()) {
response.sendRedirect("Login.jsp");
}
//Test that we got the user
System.out.println("********Users object passed from Login**************");
System.out.println( user.getId() );
System.out.println("********************");
// Obtain Collection of all Nodes (Folders + Notes )
List<Notes> userNotes = new ArrayList<Notes>();
userNotes = cs.findAllForUser(user.getId());
if (userNotes == null || !userNotes.isEmpty()) {
//Test Notes results on console
for (Notes note : userNotes) {
System.out.println("Here is a file name: " + note.getFileName());