springmvc 加载资源报404

发布于 2021-11-22 18:27:48 字数 4212 浏览 882 评论 4

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

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

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

    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-3.0.xsd

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

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

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

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

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

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

       

    <context:component-scan base-package="com.gttown.jui.controller" />

    <bean

        class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">

        <property name="messageConverters">

            <list>

                <bean

                    class="org.springframework.http.converter.StringHttpMessageConverter">

                    <property name="supportedMediaTypes">

                        <list>

                            <value>text/plain;charset=UTF-8</value>

                        </list>

                    </property>

                </bean>

            </list>

        </property>

    </bean>

    <bean

        class="org.springframework.web.servlet.view.InternalResourceViewResolver"

        p:viewClass="org.springframework.web.servlet.view.JstlView" p:prefix="/WEB-INF/jsp/"

        p:suffix=".jsp">

            

    </bean>

    <!-- <bean id="freemarkerConfigurer" class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">

        <property name="templateLoaderPath"> <value>/WEB-INF/freemarker/</value>

        </property> <property name="freemarkerSettings"> <props> <prop key="template_update_delay">1</prop>

        <prop key="defaultEncoding">UTF-8</prop> <prop key="classic_compatible">true</prop>

        <prop key="date_format">yyyy-MM-dd</prop> <prop key="time_format">HH

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

冷默言语 2021-11-27 11:04:43

web.xml如何配置?没见过.dadao的结束符

尐偏执 2021-11-27 10:51:32

是的 ,我后我加上这句就好了,不是web.xml的请求过滤的问题

毁梦 2021-11-27 02:20:51

回复
其实这句话就是替你注册了几个必备和常用的bean,不加的话就需要自己手动一个个配置注册一下。我看你这里没有注册DefaultAnnotationHandlerMapping,所以会映射不到。当然还是用这一行比较简单

酷到爆炸 2021-11-26 12:07:56

加上 <mvc:annotation-driven />

话说你用插入代码的方式贴出来,这看着多累啊

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文