开发者社区> 问答> 正文

为什么在springmvc.xml文件中添加<context:compon?400报错

下面的Spring mvc代码中,为什么创建bean失败,我已经在springmvc.xml文件中添加<context:component-scan base-package="">了啊

其中,项目目录结构为:

项目报错原因:

Caused by:
org.springframework.beans.factory.BeanCreationException:
Could not autowire field:
private com.atguigu.springmvc.UserService com.atguigu.springmvc.HelloWorld.userService;
nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException:
No qualifying bean of type [com.atguigu.springmvc.UserService] found for dependency:
expected at least 1 bean which qualifies as autowire candidate for this dependency. 
Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}




下面是文件的具体代码:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    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">

    
    <servlet>
        <servlet-name>springDispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:springmvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>springDispatcherServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    
</web-app>
springmvc.xml文件:

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


    <context:component-scan base-package="com.atguigu.springmvc"/>
    
    <!-- 配置视图解析器 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
</beans>
HelloWorld.java文件

@Controller
public class HelloWorld {

    @Autowired
    private UserService userService;
    
    public HelloWorld() {
        System.out.println("HelloWorld Constructor...");
    }
    
    @RequestMapping("/helloworld")
    public String hello(){
        System.out.println("success");
        return "success";
    }
    
}
UserService.java

@Service
public class UserService {

    @Autowired
    private HelloWorld helloWorld;
    
    public UserService() {
        System.out.println("UserService Constructor...");
    }
    
}

 

展开
收起
爱吃鱼的程序员 2020-06-06 21:03:40 752 0
1 条回答
写回答
取消 提交回答
  • https://developer.aliyun.com/profile/5yerqm5bn5yqg?spm=a2c6h.12873639.0.0.6eae304abcjaIB
                        楼上正解,service中为什么要引入controller? 
                    
    
                        spring 和springmvc两个容器是父子关系,但是spring并没有关于@contoller注解,这个注解在springmvc中,所以在spring配置文件中加入一配置扫描包不包含@controller这个类的配置,具体细节我也不知道了,自己网上查一下吧,希望能解决你的问题 
                    
    
                             但是我并没有设置spring容器啊,与spring有关的配置文件都写在springmvc.xml文件中,此时应该是没有spring父子容器之分的吧,不知说的对不对
                        
    
                        你在这两个类中,都引用了对方,这不就和死锁一样了吗 
                    
    
                            刚开始也考虑过这个原因,但是把HelloWorld.java和UserService.java中的@Autowored 变量都注释掉之后,还是会报错
                        
    
                        看一下spring父子容器,spring是无法获取springmvc的类的 
                    
    
                            但是我并没有设置spring容器啊,与spring有关的配置文件都写在springmvc.xml文件中,此时应该是没有spring父子容器之分的吧,不知说的对不对
                        
    
                        <p>加了注解但是没有配自动扫描到包,扫描不到就自动注入不了吧。。可能是。。</p>
    
    2020-06-06 21:03:57
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关课程

更多

相关电子书

更多
Apache Wicket User Guide - Ref 立即下载
introduction to Apache Bean 立即下载
低代码开发师(初级)实战教程 立即下载