Spring - @Resource注释 - 运行时

时间:2018-02-28 05:10:21

标签: java spring spring-annotations jsr250

我正在阅读Spring教程,并遇到了以下示例。它提到Spring支持Java EE注释@Resource。我正在尝试下面的源代码示例,但它给出了一个InvocationTargetException。我想这可能是由于SpellChecker对象无法正确注入。

相关的堆栈跟踪: 2018年2月27日8:56:23 org.springframework.context.support.AbstractApplicationContext prepareRefresh 信息:刷新org.springframework.context.support.ClassPathXmlApplicationContext@5d76b067:启动日期[Tue Feb 27 20:56:23 CST 2018];上下文层次结构的根 2018年2月27日8:56:32 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitionsINFO:从类路径资源[Beans.xml]加载XML bean定义 在TextEditor构造函数内部.Inside SpellChecker构造函数。 线程" main"中的例外情况java.lang.reflect.InvocationTargetException         at java.base / jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)         在java.base / jdk.internal.reflect.NativeMethodAccessorImpl.invoke(未知来源)         at java.base / jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)         在org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:48)的java.base / java.lang.reflect.Method.invoke(未知来源)         org.springframework.boot.loader.Launcher.launch(Launcher.java:87)org.springframework.boot.loader.Launcher.launch(Launcher.java:50)         在org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:51) 引起:com.tutorialspoint.MainApp.main(MainApp.java:10)中的com.tutorialspoint.TextEditor.spellCheck(TextEditor.java:22)中的java.lang.NullPointerException         ......还有8个

我尝试使用@Autowired注释而不是@Resource注释,它给出了预期的结果:

在TextEditor构造函数中。
内部SpellChecker构造函数。
在checkSpelling内部。

想知道你是否可以提出建议/指出错误,非常感谢。

(参考: https://www.tutorialspoint.com/spring/spring_jsr250_annotations.htm

[TextEditor.java]

import javax.annotation.Resource;

public class TextEditor {
  private SpellChecker spellChecker;

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

  @Resource(name = "spellChecker")
  public void setSpellChecker(SpellChecker spellChecker) {
    this.spellChecker = spellChecker;
  }

  public SpellChecker getSpellChecker() {
    return spellChecker;
  }

  public void spellCheck() {
    spellChecker.checkSpelling(); //Gave InvocationTargetException here
  }
}

[SpellChecker.java]

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

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

[MainApp.java]

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainApp {
  public static void main(String[] args) {
    ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
    TextEditor te = (TextEditor) context.getBean("textEditor");
    te.spellCheck();
  }
}

[beans.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"
   xsi:schemaLocation = "http://www.springframework.org/schema/beans
     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
     http://www.springframework.org/schema/context
     http://www.springframework.org/schema/context/spring-context-3.0.xsd">

   <context:annotation-config/>

   <!-- Definition for textEditor bean without constructor-arg  -->
   <bean id = "textEditor" name = "textEditor" class = "com.tutorialspoint.TextEditor"></bean>

   <!-- Definition for spellChecker bean -->
   <bean id = "spellChecker" name = "spellChecker" class = "com.tutorialspoint.SpellChecker"></bean>
</beans>

0 个答案:

没有答案