下面的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...");
}
}
楼上正解,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>
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。