java – actionPerformed(AWT)的BeanCurrentlyInCreationException

前端之家收集整理的这篇文章主要介绍了java – actionPerformed(AWT)的BeanCurrentlyInCreationException前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

创建一个新按钮我必须在新线程中运行代码.

通常我们使用新的Thread(….).start();但我想知道为什么我们不能使用@Async-Annotation.

这是代码

  1. package net.vectorpublish.desktop.vp;
  2. import java.awt.event.ActionEvent;
  3. import java.awt.image.BufferedImage;
  4. import java.net.MalformedURLException;
  5. import java.net.URL;
  6. import java.util.Set;
  7. import java.util.concurrent.ExecutionException;
  8. import java.util.concurrent.Future;
  9. import javax.annotation.PostConstruct;
  10. import javax.inject.Inject;
  11. import javax.inject.Named;
  12. import javax.swing.ImageIcon;
  13. import javax.swing.SwingUtilities;
  14. import org.springframework.scheduling.annotation.Async;
  15. import net.vectorpublish.desktop.vp.api.history.Redo;
  16. import net.vectorpublish.desktop.vp.api.layer.Layer;
  17. import net.vectorpublish.desktop.vp.api.ui.Dialog;
  18. import net.vectorpublish.desktop.vp.api.ui.KeyframeSlider;
  19. import net.vectorpublish.desktop.vp.api.ui.ToolBar;
  20. import net.vectorpublish.desktop.vp.api.ui.VPAbstractAction;
  21. import net.vectorpublish.desktop.vp.api.vpd.DocumentNode;
  22. import net.vectorpublish.desktop.vp.api.vpd.VectorPublishNode;
  23. import net.vectorpublish.desktop.vp.gantt.AddTaskData;
  24. import net.vectorpublish.desktop.vp.gantt.AddTaskHistoryStep;
  25. import net.vectorpublish.desktop.vp.gantt.Priority;
  26. import net.vectorpublish.desktop.vp.utils.SetUtils;
  27. import net.vectorpublish.destkop.vp.gantt.rule.VetoableTaskAdder;
  28. @SuppressWarnings("restriction")
  29. @Named
  30. public class AddTask extends VPAbstractAction implements NodeSelectionChangeListener {
  31. public AddTask() {
  32. super(GanttText.ADD_TASK,GanttText.ADD_TASK_TT,false);
  33. }
  34. @Inject
  35. private final Dialog dlg = null;
  36. @Inject
  37. private final History hist = null;
  38. @Inject
  39. private final Redo redo = null;
  40. @Inject
  41. private final Layer layer = null;
  42. @Inject
  43. private final ToolBar toolbar = null;
  44. @Inject
  45. private final KeyframeSlider slider = null;
  46. @Inject
  47. private final Set

这是例外:

  1. DefaultI8nImageFactory Found: Image for key net.vectorpublish:io/new/large in cache! (DefaultI8nImageFactory > NewFile)
  2. DefaultI8nImageFactory Found: Image for key net.vectorpublish:io/open/small in cache! (DefaultI8nImageFactory > OpenImpl)
  3. DefaultI8nImageFactory Found: Image for key net.vectorpublish:io/open/large in cache! (DefaultI8nImageFactory > OpenImpl)
  4. Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'addTask': Bean with name 'addTask' has been injected into other beans [nodeSelectionChangeImpl,translation] in its raw version as part of a circular reference,but has eventually been wrapped. This means that said other beans do not use the final version of the bean. This is often the result of over-eager type matching - consider using 'getBeanNamesOfType' with the 'allowEagerInit' flag turned off,for example.
  5. org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'addTask': Bean with name 'addTask' has been injected into other beans [nodeSelectionChangeImpl,for example.
  6. at org.springframework.beans.factory.support.AbstractAutowireCapablebeanfactory.doCreateBean(AbstractAutowireCapablebeanfactory.java:583)
  7. at org.springframework.beans.factory.support.AbstractAutowireCapablebeanfactory.createBean(AbstractAutowireCapablebeanfactory.java:482)
  8. at org.springframework.beans.factory.support.Abstractbeanfactory$1.getObject(Abstractbeanfactory.java:306)
  9. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)
  10. at org.springframework.beans.factory.support.Abstractbeanfactory.doGetBean(Abstractbeanfactory.java:302)
  11. at org.springframework.beans.factory.support.Abstractbeanfactory.getBean(Abstractbeanfactory.java:197)
  12. at org.springframework.beans.factory.support.DefaultListablebeanfactory.preInstantiateSingletons(DefaultListablebeanfactory.java:754)
  13. at org.springframework.context.support.AbstractApplicationContext.finishbeanfactoryInitialization(AbstractApplicationContext.java:866)
  14. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:542)
  15. at org.springframework.context.annotation.AnnotationConfigApplicationContext.

编辑

由于一些更高的决定,我必须尊重:

>我必须在场上进行决赛
>无法使用构造函数自动装配.

最佳答案
在这种情况下,BeanCurrentlyInCreationException的根本原因是由于在最终字段上使用了@Inject(或其Spring的等效@Autowired).

要了解应该考虑bean生命周期的行为.

> Spring首先构造对象,其字段具有默认值,即null.
>构造对象后,Spring使用反射来注入,即初始化字段的实际值

因此,第二步与字段的最终声明相矛盾,这些字段规定该字段可以具有一个且仅有一个值,该值应该在构造时分配.

因此,为了解决这个问题,要么从字段中删除最终声明,要么使用构造函数注入(考虑到依赖项的数量,前者在这种特殊情况下是可取的)

如果需要更多信息,请在评论中告知.

希望这可以帮助!

P.S.:虽然我在任何官方文档中都找不到这种行为的明确提及但是here在实例中巧妙地解释了其中该字段仅在构造符注入的情况下被标记为final.

编辑: –
引入@Async强制Spring来创建和使用bean proxies,如果存在循环引用,则会导致BeanCurrentlyInCreationException.

这是因为Spring最初注入bean的原始版本并尝试将方面应用于它并失败,因为默认情况下RawInjectionDespiteWrapping被禁用,如Nicolas Labrot所指出的.

要克服这一点

>打破循环参考(尽管建议,但需要重新设计,因此需要付出很多努力)
>使用延迟初始化(如下所述)

懒豆初始化
如果使用xml配置,则在root元素中提供default-lazy-init =“true”,如下所示

对于Java配置使用如下

  1. @Configuration
  2. @Lazy // For all Beans to load lazily (equivalent to default-lazy-init="true")
  3. public class SomeConfig {
  4. @Bean
  5. // @Lazy - Only if particular bean should load lazily
  6. public SomeBean someBean() {
  7. return new SomeBean();
  8. }
  9. }

如果使用组件扫描(通过Java或xml配置),还要确保标记为@Inject的字段应与@Lazy一起使用,例如:请参阅下文

  1. @Inject
  2. @Lazy
  3. private Dialog dlg;

猜你在找的Spring相关文章