package com.farriver.bwf.web.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class EntryController{ @RequestMapping("/") public String index() { return "redirect:/index.html?route=/"; } }