1、修改$tomcat/conf/server.xml文件,在<host></host>標(biāo)簽之間添加上:
<Context path="" docBase="/data/jsp_home/default" debug="0" reloadable="true" />
其中docBase="/data/jsp_home/default"是實(shí)際工程路徑。
2、如果想修改歡迎頁面的名字,如默認(rèn)頁為index.jsp修改為a.jsp,
在web.xml文件中,有一段如下:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
在<welcome-file-list>與<welcome-file>index.html</welcome-file>之間添加上:
<welcome-file>a.jsp</welcome-file>
保存后重啟tomcat即可。