Hipny
Hipny

Reputation: 749

Redirect home page to front controller

I've a front controller mapped on an URL pattern of /Controller which is thus available on http://localhost:8080/myproject/Controller. How can I configure my web application so that the homepage on http://localhost:8080/myproject get automatically redirected to it?

Upvotes: 1

Views: 209

Answers (1)

BalusC
BalusC

Reputation: 1108922

One of the easiest ways is to just register it as a <welcome-file> in web.xml.

<welcome-file-list>
    <welcome-file>Controller</welcome-file>
</welcome-file-list>

Upvotes: 1

Related Questions