0

Vaadin 7、Spring Data JPA 1.9.4.RELEASE、および Vaadin-Spring 1.0.0 を使用していますが、DI の問題がいくつかあります。

Spring Boot を使用しないことにしたのは、Spring Boot を使用すると、「見る」ことができないことが自動的に行われ、理由を理解して見つけるのに時間がかかりすぎるという問題に遭遇したため、ブートしない方がよいからです。

私が遭遇する問題は、DI がルート UI では機能するが、ルート UI のサブウィンドウでは機能しないことです。

RootUI.java

@SpringUI(path = "/")
public class RootUI extends UI {
    @Autowired
    private EntityManagerFactory entityManagerFactory; // this one works, but I cannot get EntityManager directly

    @Autowired
    private ClassService classService;   // this one works


    @Override
    protected void init(VaadinRequest request) {
        ...

        PersonForm form = new PersonForm();
        CssLayout layout = new CssLayout();
        layout.addComponent(form);
        Window subWindow = new Window();
        subWindow.setContent(layout);
        ...
    }
}

PersonForm.java

public class PersonForm {

    @Autowired
    private ClassService classService; // this doesnot work, 

    public PersonForm(ClassService classService) {
        classService.findByName();// since the @Autowired dosenot work, I have to pass the one from rootUI.

    }

    init() {
        classService.findByName();   // null exception
    }
}

DBConfig.java

@Configuration
@EnableVaadin
@EnableJpaRepositories(basePackages = {"com.example.person.repository"})
@EnableTransactionManagement
public class DBConfig {
    @Bean
    public DataSource dataSource() {
        HikariConfig config = new HikariConfig();
        config.setDriverClassName("com.mysql.jdbc.Driver");
        config.setJdbcUrl("jdbc:mysql://localhost:3306/test?autoReconnect=true&useSSL=false");
        config.setUsername("root");
        config.setPassword("root");
        config.setMaximumPoolSize(20);
        HikariDataSource dataSource = new HikariDataSource(config);
        return dataSource;
    }

    @Bean
    public EntityManagerFactory entityManagerFactory() {

        HibernateJpaVendorAdapter vendorAdapter = new HibernateJpaVendorAdapter();
        vendorAdapter.setGenerateDdl(true);

        LocalContainerEntityManagerFactoryBean factory = new LocalContainerEntityManagerFactoryBean();
        factory.setJpaVendorAdapter(vendorAdapter);

        factory.setDataSource(dataSource());
        factory.setPackagesToScan("com.example.person");
        factory.setPersistenceProviderClass(HibernatePersistenceProvider.class);

        Properties jpaProperties = new Properties();
        jpaProperties.put("hibernate.dialect", "org.hibernate.dialect.MySQLInnoDBDialect");
        jpaProperties.put("hibernate.hbm2ddl.auto", "update");
        factory.setJpaProperties(jpaProperties);

        factory.afterPropertiesSet();
        return factory.getObject();
    }
}
4

1 に答える 1

0

@Component などの Spring アノテーションを使用して、PersonForm にアノテーションを付けてみてください。または、 vaadin-spring @SpringViewのアノテーションを使用してみてください。

于 2016-03-05T18:43:20.203 に答える