By default when the web app starts it starts with the home page generated by roo with view name as "index"

Suppose i add new custom controller using following command,

web mvc controller ~.web.ViewHomeController --preferredMapping /homepage1

It generates the following code,

@RequestMapping("/homepage1/**")
@Controller

public class ViewHomeController {
   @RequestMapping
   public void get(ModelMap modelMap, HttpServletRequest request, 
                                  HttpServletResponse response) {
   }

   @RequestMapping(method = RequestMethod.POST, value = "{id}")
   public void post(@PathVariable Long id, ModelMap modelMap, 
                 HttpServletRequest request, HttpServletResponse response) {
   }

   @RequestMapping
   public String index() {
     return "home/homepage1";
   }
}

I want the "home/homepage1" page to be the default page to be shown when the Roo Application starts.

Can i please get some guidance/details on changes i need to make to enable "home/homepage1" as default homepage for my application.

Thanks for help in advance. I am using latest version of Spring ROO, 1.1.4.

Thanks

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

In your webmvc-config.xml, replace the following section:

<!-- selects a static view for rendering without the need for an explicit controller -->
<mvc:view-controller path="/" view-name="index" />

with a view name you prefer.

link|improve this answer
Thanks again for the quick response. That helped. – Rahul Jul 4 '11 at 16:14
@user - remember then to upvote and mark as accepted. – Kev Jul 4 '11 at 17:30
Couldn't agree more with Kev! – abalogh Jul 4 '11 at 18:30
Being new user don't yet have permissions yet to Vote Up. But i did mark mark the answer as accepted. thanks. – Rahul Jul 5 '11 at 0:19
You have right to upvote from day 0, just click on the arrow pointing upwards next to the question. – abalogh Jul 5 '11 at 8:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.