NoSuchBeanDefinitionException: No bean named 'xxx' is defined

一开始学习spring这种问题恐怕十分常见了,遇见这样的问题基本就是以下几种情况

1. 缺少包或者包冲突

我把我用到的包贴出来大家可以对照一下

//spring基本依赖
compile "org.springframework:spring-context:4.3.9.RELEASE"
compile "org.springframework:spring-beans:4.3.9.RELEASE"
compile "org.springframework:spring-core:4.3.9.RELEASE"
compile "org.springframework:spring-expression:4.3.9.RELEASE"
//spring的aop操作依赖
compile "org.springframework:spring-aspects:4.3.9.RELEASE"
compile "org.springframework:spring-aop:4.3.9.RELEASE"
compile "aspectj:aspectjweaver:1.5.4"
compile "aopalliance:aopalliance:1.0"
//spring的jdbc操作依赖
compile "mysql:mysql-connector-java:5.1.38"
compile "org.springframework:spring-jdbc:4.3.9.RELEASE"
compile "org.springframework:spring-tx:4.3.9.RELEASE"
compile "com.mchange:c3p0:0.9.5.2"
//springMVC的依赖
compile "org.springframework:spring-webmvc:4.3.9.RELEASE"
compile "org.springframework:spring-web:4.3.9.RELEASE"
compile "javax.servlet:jstl:1.2"
compile "javax.servlet:servlet-api:2.5"
compile "javax.servlet.jsp:jsp-api:2.2"

2. bean是否未定义或名字写错

仔细检查自己的bean的名字有没有写错,如果用@Autowired的话,还要检查类型是否匹配。

还要检查@Repository等有没有忘了配置

3. spring的配置xml的路径是否正确

在resource下需要用classpath:开头(如果不行可以试试classpath*:),在webapp下需要WEB_INF/xxx

还要注意,你的路径应该对应的是tomcat下的路径!

4. web.xml配置问题(这也是我这次出的问题)

如果你用单元测试(junit)可以通过,但是开了tomcat就报错的话,基本都是web.xml配置问题

我当时已经把spring的xml配置进去了,也就是这样,但还是报错

<context-param>
        
        <param-name>contextConfigLocationparam-name>
        <param-value>classpath:spring/applicationContext.xml,classpath:spring/spring_mybatis.xmlparam-value>
    context-param>

最后才发现我的监听器没有加


    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListenerlistener-class>
    listener>

顺带提一下,前端控制器的init-param最好要配一下,不然他会自动寻找xxx-servlet.xml加载,这里也有可能出错

 
    <servlet>
        <servlet-name>dispatcherservlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
        
        <init-param>
            <param-name>contextConfigLocationparam-name>
            <param-value>classpath:spring/dispatcher-servlet.xmlparam-value>
        init-param>
    servlet>

5. 天下之大无奇不有,如果还有其他奇葩的错的,还恕我无能为力了

听说各个版本还会有一些不同的问题,这些就很难办了(主要是路径的问题,可以试试多用上点*,碰上的几率会大一点…)

你可能感兴趣的:(问题,spring)