java Spring autowire byName未按预期工作

b5buobof  于 2023-04-10  发布在  Java
关注(0)|答案(2)|浏览(100)

Spring autowire byName未按预期工作。

public class SpellChecker {
    public SpellChecker() {
        System.out.println("Inside SpellChecker constructor." );
    }

    public void checkSpelling() {
        System.out.println("Inside checkSpelling." );
    }
}

public class TextEditor {

       private SpellChecker spellChecker1;
       private String name;

       public void setSpellChecker( SpellChecker spellChecker1 ){
          this.spellChecker1 = spellChecker1;
       }
       public SpellChecker getSpellChecker() {
          return spellChecker1;
       }
       public void setName(String name) {
          this.name = name;
       }
       public String getName() {
          return name;
       }

   public void spellCheck() {
       System.out.println(" TextEditor name is " +name);
      spellChecker1.checkSpelling();
   }
}

public class TextEditorMain {

    public static void main(String args[]) throws InterruptedException{

        ApplicationContext context = new 
        ClassPathXmlApplicationContext("Beans.xml"); 
        TextEditor tEditor = (TextEditor) context.getBean("textEditor");
        tEditor.spellCheck();   
    }
}

Spring beans配置:

<bean id = "spellChecker1" class = "com.spring.beans.SpellChecker">
</bean>

<bean id = "textEditor" class = "com.spring.beans.TextEditor" autowire="byName">
   <property name = "name" value = "text1"/>
</bean>

当我给予spellChecker1作为bean id时,它不工作。下面是控制台o/p,

Inside SpellChecker constructor.
 TextEditor name is text1
Exception in thread "main" java.lang.NullPointerException
    at com.spring.beans.TextEditor.spellCheck(TextEditor.java:26)
    at com.spring.main.TextEditorMain.main(TextEditorMain.java:15)

Bean ID和引用名称都是相同的spellChecker1,但仍然不起作用。但奇怪的是,如果我将xml中的Bean ID从spellChecker1更改为spellChecker,则代码可以工作并在下面给出o/p,

Inside SpellChecker constructor.
 TextEditor name is text1
Inside checkSpelling.

那么为什么在使用spellChecker1时没有添加依赖关系呢?

wnavrhmk

wnavrhmk1#

实际上是按照设计运行的,您的属性名为spellChecker而不是spellChecker1,您有一个字段名为spellChecker1

字段的名称与属性的名称不相同。属性的名称由类上可用的getset方法定义。由于您有setSpellChecker(以及相应的getter),因此有一个名为spellChecker属性

所有这些都写在JavaBeans Specification中(这是在1998年写的!)
基本上,属性是与bean相关联的命名属性,可以通过调用bean上的适当方法来读取或写入。因此,例如,bean可能具有表示其前景颜色的foreground属性。该属性可以通过调用Color getForeground()方法来读取,并通过调用void setForeground(Color c)方法来更新。

  • 获取JavaBeans规范。*
3vpjnl9f

3vpjnl9f2#

public void setSpellChecker(SpellChecker spellChecker1){this.spellChecker1 = spellChecker1;}只需将setter方法名称从setSpellChecker更改为setSpellChecker 1,因为要设置值,它需要该属性的setter方法

相关问题