问答详情
源自:3-5 Hello Spring MVC

pom.xml文件 报错 怎么回事儿?

pom.xml文件 报错 怎么回事儿?

提问者:慕的地5420249 2019-03-01 19:54

个回答

  • weixin_慕田峪9562989
    2019-03-02 16:45:40

    <?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:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"  

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

        xsi:schemaLocation="

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

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

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

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

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

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

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

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

     <!-- 激活标注 -->

     <context:annotation-config />

       <!-- 对module包中的所有类进行扫描,以完成Bean创建和自动依赖注入的功能-->  

       <context:component-scan base-package="com.imooc.mvcdemo.controller">

     <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"></context:include-filter>

     </context:component-scan>  

     <mvc:annotation-driven></mvc:annotation-driven>

     <!-- 启用基于annotation的handlerMapping -->

        <!-- 定义视图解析器,在视图模型前后添加前缀后缀-->  

       <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">

            <property name="prefix" value="/WEB-INF/jsps/" />

            <property name="suffix" value=".jsp" />

       </bean>

    </beans>


  • jisu_che
    2019-03-02 14:36:05

    可以发下报什么错吗