我刚接触eclipse并在新的webapp开始时面临困难。 index.jsp没有显示。
的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>PizzaOrderApp</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
我已尝试使用http://localhost:8080/PizzaOrderApp/index.jsp和http://localhost:8080/PizzaOrderApp/jsp/index.jsp
删除读取后的tomcat服务器:
答案 0 :(得分:0)
您是否尝试将.jsp文件直接放在WebContent文件夹中,而不是为JSP页面创建文件夹?
答案 1 :(得分:0)
您没有在web.xml中定义Spring dispatcher servlet。您可以将index.jsp复制到WEB-INF目录之外(进入webcontent),或者您应该深入了解Spring MVC documentation。
答案 2 :(得分:0)