我下载了该项目只是为了查看其工作原理,但是尽管我认为映射很好,但是它显示了此错误,请多多帮助。我正在使用tomcat 8080和url-http://localhost:8080/HotelReservation/
在localhost上运行它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">
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
</web-app>
enter code here
答案 0 :(得分:0)
我在这个问题上挣扎了很多次。
我当前使用的解决方案是webapp
(或保存了jsp之类的视图的文件夹)是否在部署程序集下。
尝试一下:
右键单击项目> Build Path
> Configure Build path
> Deployment Assembly
> Add
(右侧)> Folder
>(添加您的jsp文件夹,默认情况下为src/main/webapp
)
注意:如果在pages
下有另一个名为webapp
的文件夹,其中包含jsp文件,例如src/main/webapp/pages
,则必须在构建路径中也包括该文件夹。