热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

SpringMVC一直提示404,怎么解决?

项目结构:

项目结构:

web.xml:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83



         xmlns="http://java.sun.com/xml/ns/javaee"

         xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"

         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"

         id="WebApp_ID" version="2.5">

    SalamanderBBS



   

   

       

   




   

   

        contextConfigLocation

        classpath:spring-mybatis.xml

   




   

   

        webAppRootKey

        springmvc.root

   






   

   

        SpringEncodingFilter

        org.springframework.web.filter.CharacterEncodingFilter

       

            encoding

            UTF-8

       


       

            forceEncoding

            true

       


   


   

        SpringEncodingFilter

        /*

   




   

        org.springframework.web.context.ContextLoaderListener

   




   

   

        dispatcherServlet

        org.springframework.web.servlet.DispatcherServlet

       

            contextConfigLocation

           

            classpath:spring-mvc.xml

       


        1

   


   

   

        dispatcherServlet

        /

   






   

   

       

        404

        /WEB-INF/view/errpage/404.jsp

   


   

       

        405

        /WEB-INF/view/errpage/405.jsp

   


   

       

        500

        /WEB-INF/view/errpage/500.jsp

   



spring-batis.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67



    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"

    xmlns:cOntext="http://www.springframework.org/schema/context"

    xmlns:mvc="http://www.springframework.org/schema/mvc"

    xmlns:tx="http://www.springframework.org/schema/tx"

    xmlns:aop="http://www.springframework.org/schema/aop"

    xsi:schemaLocation="

        http://www.springframework.org/schema/beans    

        http://www.springframework.org/schema/beans/spring-beans-4.0.xsd

        http://www.springframework.org/schema/context

        http://www.springframework.org/schema/context/spring-context-4.0.xsd

        http://www.springframework.org/schema/aop

        http://www.springframework.org/schema/aop/spring-aop-4.0.xsd

        http://www.springframework.org/schema/tx

        http://www.springframework.org/schema/tx/spring-tx-4.0.xsd

        ">

   

   



   

   
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

       

   




   
        destroy-method="close">

       

       

       

       

       

       

       

       

       

       

       

       

       

       

   






   
          class="org.springframework.jdbc.datasource.DataSourceTransactionManager">

       

   






   

   

       

       

       

   




   

   

       

       

   









spring-mvc.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41



       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"

       xmlns:cOntext="http://www.springframework.org/schema/context"

       xmlns:mvc="http://www.springframework.org/schema/mvc"

       xsi:schemaLocation="

        http://www.springframework.org/schema/beans    

        http://www.springframework.org/schema/beans/spring-beans-4.0.xsd

        http://www.springframework.org/schema/context

        http://www.springframework.org/schema/context/spring-context-4.0.xsd

        http://www.springframework.org/schema/aop

        http://www.springframework.org/schema/aop/spring-aop-4.0.xsd

       http://www.springframework.org/schema/mvc

        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd

        http://www.springframework.org/schema/tx

        http://www.springframework.org/schema/tx/spring-tx-4.0.xsd

        ">

   



   

   



   

   
          class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">

       

           

                text/html;charset=UTF-8

           


       


   






   

   

       

       

   








推荐阅读
author-avatar
手机用户2502891985
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有