springmvc的預設初始頁
阿新 • • 發佈:2019-01-30
在tomcat中啟動springmvc的web專案中,開啟的初始頁面一般為404,可以通過設定預設的初始頁面,啟動專案後直接進入不尬的歡迎頁。
web.xml 中:
<servlet-mapping>
<servlet-name>Dispatcher</servlet-name>
<!-- 預設的連結地址 -->
<url-pattern>/index</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>Dispatcher</servlet-name>
<!-- 指定連線的字尾,可以隨意寫-->
<url-pattern>/</url-pattern>
</servlet-mapping>
預設的歡迎頁的controller:
@Controller
public class WelcomeController {
@RequestMapping("/index")
public String welcome() {
return "index";
}
}
這個index是放在web-info 下的;
當然最簡單的是:
<welcome-file-list>
<welcome-file>/index.jsp</welcome-file>
</welcome-file-list>
這個index是放在webapp或者web-content下;
OK!這樣配置就bingo!