编程语言
首页 > 编程语言> > java – 作为Spring bean的Vaadin组件

java – 作为Spring bean的Vaadin组件

作者:互联网

题:

当Vaadin组件可以是spring容器中的bean时(@SpringComponent注释)?

问题澄清:

我问这个问题是因为我知道在使用@SpringView之后Vaadin View可能是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应用程序上下文 – 但我认为这不是正确的方法.

解决方法:

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

在@UIScope类中,您可以使用@Autowired和@PostConstruct等.我将它用于Windows和布局等的扩展.您需要在类路径上使用com.vaadin:vaadin-spring:1.0.0.有关vaadin-spring的更多信息

标签:java,spring,vaadin,vaadin7
来源: https://codeday.me/bug/20190628/1315602.html