我无法使用jsp在日食火星上打印一个简单的欢迎程序。我的项目名称是mayank,我已将index.jsp放在mayank / webcontent中。 这是我的代码:
的index.jsp
<html>
<head>
<title> hello</title>
</head>
<body>
<%="welcome to jsp" %>
</body>
</html>
当我尝试运行apache tomcat服务器时,它总是显示404错误。有人可以帮我解决为什么这个问题一次又一次地发生
答案 0 :(得分:1)
您正在呼叫哪个网址(以及您的服务器配置使用哪个端口)?您的项目层次结构是什么样的? (例如,index.jsp文件的路径是什么?)
相关:
答案 1 :(得分:1)
请检查网址,并确保您将在 webContent 文件夹中创建jsp页面。您可以在 web.xml 中指定jsp文件为应用程序加载时打开的第一页。
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>