zoukankan      html  css  js  c++  java
  • SpringMvc自动装配@Controller无效

    1.问题原因:SpringMvc驱动器没有扫描该Controller层

    虽然配置了

    1     <!-- 启用spring mvc 注解 -->
    2     <context:annotation-config />
    3 
    4     <!-- 设置使用注解的类所在的jar包 -->
    5     <context:component-scan base-package="cn.lonecloud.controller"></context:component-scan>

    但是由于没有启用mvc驱动器导致其自动装配失败

    解决办法:

    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns:mvc="http://www.springframework.org/schema/mvc"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
    
        <mvc:annotation-driven />
        <mvc:default-servlet-handler />
        <!-- 启用spring mvc 注解 -->
        <context:annotation-config />
    
        <!-- 设置使用注解的类所在的jar包 -->
        <context:component-scan base-package="cn.lonecloud.controller"></context:component-scan>
    </beans>

    添加

    <mvc:annotation-driven />
        <mvc:default-servlet-handler />和mvc的schema文件即可开启驱动
  • 相关阅读:
    Linux部署Spingboot项目
    Linux Centos7yum安装Mysql8.0.21
    Linux配置网络yum源,提高下载速度
    Linux安装jdk1.8
    Spring的AOP
    Spring的事务管理
    Maven项目中,使用mybatis,根据数据库自动生成pojo实体类、dao、mapper
    Ubuntu14.04中使用docker容器部署tomcat镜像+java web项目
    mybatis
    spl
  • 原文地址:https://www.cnblogs.com/lonecloud/p/6684064.html
Copyright © 2011-2022 走看看