报错解决方法——http404(Spring MVC)

一.检查静态资源是否加载成功

成功的标志就是在项目跑起来之后再target文件夹中的classes文件夹中可以找到自己写的配置文件。

1.查看resources文件夹是否被识别为资源文件夹

如图所示,文件夹图标右下角有三条杠代表被识别为资源文件

2.在pox.xml文件中插入如下代码进行识别

xml 复制代码
		<resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>

二.检查各个类中路径是否正确

1.jsp中的超链接跳转路径

2.根据跳转路径寻找对应的Controller类方法

3.查看Controller类方法最后跳转的jsp文件是否存在


三.检查扫描器是否扫描到文件所在包


相关推荐
r***93485 小时前
【Redis】在Java中以及Spring环境下操作Redis
java·redis·spring
3***68845 小时前
使用 Logback 的最佳实践:`logback.xml` 与 `logback-spring.xml` 的区别与用法
xml·spring·logback
k***45995 小时前
【mybatis】基本操作:详解Spring通过注解和XML的方式来操作mybatis
xml·spring·mybatis
q***44815 小时前
spring实例化对象的几种方式(使用XML配置文件)
xml·java·spring
q***42056 小时前
Spring Data 什么是Spring Data 理解
java·后端·spring
Swift社区10 小时前
StackOverflowError 栈溢出的原因与实战解决方案
java·spring boot·spring
这是程序猿20 小时前
基于java的ssm框架旅游在线平台
java·开发语言·spring boot·spring·旅游·旅游在线平台
i***t91920 小时前
基于SpringBoot和PostGIS的云南与缅甸的千里边境线实战
java·spring boot·spring
k***082920 小时前
【监控】spring actuator源码速读
java·spring boot·spring