如何使用tomcat8本地服务器将自定义JSP项目URL设置为默认URL?

时间:2017-09-02 10:38:37

标签: tomcat8

我设置Tomcat8并在webapps目录中上传jsp项目。 现在,我可以使用“http://sitename/project name / web”等网址访问我的网站。 但我希望我的项目在访问“http://sitename”时显示。 我试图找到解决方案,但没有任何帮助。 请帮我。 谢谢。

1 个答案:

答案 0 :(得分:0)

尝试在ROOT目录中创建名为webapps的目录,并将其放入jsp文件并重命名为index.jsp

如果您在ROOT目录中创建ROOT.war目录或webapps,则可以在不/[context-name]的情况下访问该应用,例如“http://sitename/your.jsp”。

此外,Tomcat通过conf/web.xml中的以下默认设置将index.jsp视为欢迎文件:

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

因此,您可以通过请求“http://sitename”来访问ROOT/index.jsp