Vaadin 组件作为 Spring bean

Vaadin Component as Spring bean

问题:

什么时候 Vaadin 组件可以是 spring 容器中的一个 bean(@SpringComponent 注释)?

问题说明:

我问这个问题是因为我知道 Vaadin View 在使用 @SpringView 之后可能是 spring bean。 但是如果我用 @SpringComponent 注释 Button 组件,它将只创建一次。会不会有什么问题?

示例:

我有很多 JpaRepository bean:

public interface CustomerRepository extends JpaRepository<Customer, Long> 
// ...

public interface UserRepository extends JpaRepository<User, Long> {
// ...

我想在不同的地方使用它们——例如在 Tab 组件中(在 Vaadin TabSheet 中)。所以我有一个想法 - tabContent 也可以是 spring 组件:

@SpringView(name = "viewName")
public class SomeView extends VerticalLayout implements View {

    @Autowired
    private SomeTabContent tabContent;
    //...
    public void init() { // call every view enter()
        removeAllComponents();
        // Initialize whole view.
        tabSheet.addTab(tabContent, /* ... */);
        // ...
    }

然后我可以注入所有需要的 bean:

@SpringComponent
public class SomeTabContent extends VerticalLayout {
    @Autowired
    private CustomerRepository customerRepository;

    @Autowired
    private UserRepository UserRepository;
}

这是正确的架构吗?

注意:我知道 Vaadin 有 CDI 和数据绑定功能,但我不想使用它们。我也知道我可以在任何地方手动创建 Spring 应用程序上下文 - 但我认为这不是正确的方法。

增长知识后,我有了一些假设。

我们可以将 Vaadin 组件用作 Spring bean 吗?为什么不。我试过了,它有效。但是...

但它也会导致多个侦听器调用 - 因为我有 class-instated Button 对象。

Spring自己创建组件的实例,放在某处。所以我不能在组件构造函数中做任何事情。此外,此类组件在使用前应进行清理和初始化。听起来很奇怪吗?我想是的。而且它可能会导致很多问题 - 特别是在多线程环境中。

所以我不建议制作任何 Vaadin 组件的 Bean(例如 Tab、Buttons...)。因为他们需要根据使用地点改变他们的状态。

但是如何使 Spring 容器中不由 Spring 容器维护的对象中的所有 bean 可用?这不是新问题,至少有两个解决方案:

  1. @Configurable注释这样的class并启用任何编织(编译或运行时间)。例如 here or here.

  2. 直接使用AutowireCapableBeanFactoryautowiredBeanProperty()方法。可以找到一些解释 here and also on SO.

如果您只使用@Component(或@SpringComponent),class 将为应用程序实例化一次,所以,是的,当多个会话共享结果对象时,您会遇到问题你不希望他们这样做。 所以你也添加了@UIScope。这将确保您在每个会话中获得此 class 的一个实例。您可以在 class 中存储会话数据(就像您使用 Spring 的 @Session 一样,但这需要您使用 Spring 的 Dispatcher)。

在@UIScope class 中,您可以使用@Autowired 和@PostConstruct 等。我用它来扩展Windows 和布局等。您需要com.vaadin:vaadin-spring:1.0.0 在你的 class 路径上。有关 vaadin-spring

的更多信息

可以使用 @Scope 注释来设置确保每次自动装配 bean 时都创建一个新实例。特别是 @Scope("prototype"),您可能需要 proxyMode在某些情况下。 https://www.baeldung.com/spring-bean-scopes