show/hide this revision's text 2 Added answer to posted comment

The issue is your hello() method is annotated as a handlerMethod to Spring and per the @RequestMapping documentation, handler methods may return any number of objects but if it returns a String then :

@Request Documentation

A String value which is interpreted as view name, with the model implicitly determined through command objects and ModelAttribute annotated reference data accessor methods. The handler method may also programmatically enrich the model by declaring a ModelMap argument (see above)

So it's basically looking for the mapping for that String you return 'hello, user' - which doesn't exist. You may have your method return void and inside the method write out to the HttpServletResponse yourself.

Further answer:

@RequestMapping(value="/users/hello", method=RequestMethod.GET) 
public void hello(Writer w) { 
   w.write("hello, user!"); 
   w.flush(); 
   return; 
}

You may want to get the entire HttpServletResponse rather then just the Writer, that way you can set the appropriate Http Headers.

Sorry my comment below is jumbled, I'm new to this site.

show/hide this revision's text 1 [made Community Wiki]

The issue is your hello() method is annotated as a handlerMethod to Spring and per the @RequestMapping documentation, handler methods may return any number of objects but if it returns a String then :

@Request Documentation

A String value which is interpreted as view name, with the model implicitly determined through command objects and ModelAttribute annotated reference data accessor methods. The handler method may also programmatically enrich the model by declaring a ModelMap argument (see above)

So it's basically looking for the mapping for that String you return 'hello, user' - which doesn't exist. You may have your method return void and inside the method write out to the HttpServletResponse yourself.