- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在修改我的类以避免 new
StudentService
上的运算符(让 Spring 的容器管理它)在我的 Controller 中。我需要Student student;
那里的字段被注入(inject) StudentService
但不是得到 student
注入(inject)它会注入(inject)一个异常说: No qualifying bean of type [com.Student] is defined: expected single matching bean but found 2: studentService,ss
我想要这个程序打印
NAME : bravo
学生:
package com;
public interface Student {
public String getN();
}
学生服务:
package com;
import org.springframework.stereotype.Service;
@Service
public class StudentService implements Student{
String name;
@Override
public String getN() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
Controller
package com;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class TheController {
@Autowired
private ApplicationContext appContext;
@Autowired
Student student;
@RequestMapping("/")
public String aMethod() {
StudentService ss = (StudentService) appContext.getBean("ss");
ss.setName("bravo");
System.out.println("NAME : " + student.getN());
// while "NAME : " + ss.getN() will work, of course
return "";
}
}
调度程序servlet
...
<context:component-scan base-package="com" />
...
<bean id="ss" class="com.StudentService" />
...
编辑:如果我这样做:
@Service ("st")
public class StudentService implements Student{
还有这个(在 Controller 中)
@Autowired
@Qualifier("st")
Student student; // tipenya interface
没有异常(exception),但它会产生
NAME :null
如果我去掉@Service
并加载StudentService
如<bean class="com.StudentService".. >
并通过应用程序上下文手动加载它,然后它就会工作。
我的意思是那怎么样@Service
无法 Autowiring
最佳答案
Spring 知道两种以上声明“bean”(可用于注入(inject)的对象)的方法。一种是xml:
<bean id="ss" class="com.StudentService" />
这将导致 spring 通过执行 new com.StudentService(...)
创建一个名为 "ss"
的 bean。它甚至应该尝试通过查找其他匹配的 bean 来找出构造函数参数。生成的对象存储在您的应用程序上下文中以供将来使用。例如。当某些地方请求获取 StudentService
类型的 bean 或名为 "ss"
的 bean 时。
@Service
以及@Component
和其他一些将导致spring将其附加的类视为bean。该名称将从类名派生:它只是小写。它还会新建
该类型的实例并处理所有依赖项。 XML 和@-annotation 配置的bean 都将在应用程序上下文中可用。
在你的例子中,你用两种不同的方式告诉 spring 做同样的事情:你希望 com.StudentService 可以作为 bean 使用,一旦显式命名“ss”
通过 xml,曾经在 java 中隐式命名为 "studentService"
。
现在,当您在 Controller 中请求一个与 Student
类型匹配的 bean 时,如下所示
@Autowired
Student student;
它有 2 个同样优秀的候选者,但无法决定注入(inject)哪一个。这是您当前的异常。
要解决该问题,您可以只声明 1 个 bean(最好),也可以通过提供名称来限定您所指的 bean。例如
@Autowired
@Qualifier("ss")
Student student;
这几乎就是您稍后要做的事情
StudentService ss = (StudentService) appContext.getBean("ss");
<小时/>
当你将两者结合起来时
@Autowired
@Qualifier("st")
Student student;
...
StudentService ss = (StudentService) appContext.getBean("ss");
ss.setName("bravo");
System.out.println("NAME : " + student.getN());
现在发生的情况是,您现在有 2 个独立的 bean/StudentService 实例,它们都是“单例”(用它们的 bean 名称表示)。您设置其中一个的名称,然后读取另一个的名称。预期结果是 "st"
bean 的名称仍然为 null。
关于java - 即使依赖项由 Spring 容器管理后也无法 Autowiring 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37736283/
这更像是一个最佳实践类型的问题。 我听过很多次: a) 在 Spring 中 Autowiring 时,最佳做法是 Autowiring 接口(interface)“而不是”实现。 和.. b) 我还
我正在查看工作区中的一些旧示例。我看不出怎么样由于没有 @Autowired, Autowiring 完成。 Spring boot + facebook 默认配置。 @Controller @Req
事实似乎并非如此。我曾经认为 XML 配置是为了覆盖注释。但是当我在XML配置中设置autowire =“no”时,bean的@Autowired注释属性仍然有效。我不再确定 XML autowire
为什么需要 Autowiring ? Autowiring 概念的解释是什么?@autowired Spring Framework 中的注释. 最佳答案 不需要 Autowiring ,只是方便。
来自this Spring documentation我知道当我使用@Bean时,默认值已经相当于: @Bean(autowire = Autowire.NO) (Default) No autowi
遇到了一个奇怪的要求。我需要将唯一的错误 ID 附加到 log4j 消息并将该消息 ID 返回给接口(interface)。所以,我虽然让我们创建一个 spring 服务,就像这样 public cl
这个问题已经有答案了: @Autowire failing with @Repository (3 个回答) 已关闭 4 年前。 我有一个类“ReportEverythingForm”,它拒绝通过自动
我是 Spring 的新手。我正面临 Spring-Boot 的问题。我正在尝试将一个字段从外部配置文件 Autowiring 到一个 Autowiring 的 bean 中。我有以下类(class)
我有一个带有存储库的 Spring Boot 应用程序。 我还使用@Service并扩展其中的存储库。 当我尝试 @Autowired 我拥有的服务时: Caused by: org.springfr
我有一个接口(interface)C,想要访问另外两个类中的getClassName()。访问 a.getClassName() 时,method1() 中出现异常。 public interface
我遇到了一个奇怪的问题,其中注入(inject)了 @Autowire 的 Component 在一个类中可用,但在另一个类中不可用。 我在Account和Agreement类的属性network中使
考虑以下示例代码: public class SmallCar { private CarEngine carEngine; @Autowired public SmallCa
autowire = "no"和 autowire = "default"有什么区别?如果它们相同,那么为什么我们有这 2 个选项。 最佳答案 Beans The default is "defaul
我已将项目更改为使用注释而不是 xml 文件,但这会增加应用程序部署时间。现在我正在寻找减少它的方法。 按类型 Autowiring 和按名称 Autowiring 之间有性能差异吗? 热烈欢迎任何其
我有一个与 Web 插件一起使用的 spring boot 应用程序。 在一节课中我有: package com.test.company @Component @RestController pub
我有一个可以执行某些操作的系统。该系统使用以下方法为每个对象创建一个单独的线程: stp.scheduleWithFixedDelay((EditSite) ctx.getBean("EditSite
我正在尝试自动连接存储库,但它无法工作。我已经为此苦苦挣扎了一个星期,但我似乎无法弄清楚。有趣的是,当我注释掉人员存储库的 Autowiring 时,程序可以正常工作并正确编译,但是一旦我尝试 Aut
意味着如果具有所需类型的 bean 不超过 1 个,bean 的所有字段将自动注入(inject)依赖项。 问题是当使用注解时它是如何工作的,它到底能不能工作。 我的测试表明即使我使用 @Resou
我有一个 Autowiring 其他 bean 的组件: @Component public class MyComponent { @Autowired private Enviro
这是我的类代码,其中有 @Autowired 字段: 测试A @ContextConfiguration("classpath:spring.xml") public abstract class T
我是一名优秀的程序员,十分优秀!