Java web项目设置默认主页

在web.xml中配置即可,格式如下。

 

<welcome-file-list>

<welcome-file>hello.jsp</welcome-file>

</welcome-file-list>

 

把对应的hello.jsp页面放在WebContent下面项目启动的时候就会自动加载了。

猜你喜欢

转载自blog.csdn.net/majishushu/article/details/71487243
今日推荐