Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use spring and I'd like to configure my uiModel to return into my controller by a service. But my question is: How can I initialize the model Variable?

following my code is post. Thanks

My controller

@RequestMapping(value = "/page/{idPage}", method = RequestMethod.GET)
public String page(@PathVariable("idPage") long idPage, Model uiModel) {
    uiModel= pageService.modelForPage(idPage);
    return "page";
}

my service

public Model modelForPage(long idPage) {

  Model uiModel= ???
    // other lines for  some addAttribute
  return uiModel;

}

if I write Model uiModel = null; I have java.lang.NullPointerException;

share|improve this question
What about passing the model to the service method? pageService.modelForPage(idPage, uiModel); – James Nov 22 '12 at 10:02
@James yes...simple, tnx – Shinigami Nov 22 '12 at 10:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.