1

是否可以从 vaading4spring 与 Vaadin Spring Boot 一起运行 Spring Security?

当我在 build.gradle 混合两者时

// Official VaadinSpring Integration
compile("com.vaadin:vaadin-spring:1.0.0.beta2")
compile("com.vaadin:vaadin-spring-boot:1.0.0.beta2")
compile("com.vaadin:vaadin-spring-boot-starter:1.0.0.beta2")

// Supporting (unofficial) vaadin4spring 
compile("org.vaadin.spring:spring-vaadin:0.0.5.RELEASE")
compile("org.vaadin.spring:spring-boot-vaadin:0.0.5.RELEASE")
compile("org.vaadin.spring:spring-vaadin-security:0.0.5.RELEASE")

新注解(例如@SpringUI)不起作用。

当我删除

compile("org.vaadin.spring:spring-vaadin:0.0.5.RELEASE")
compile("org.vaadin.spring:spring-boot-vaadin:0.0.5.RELEASE")

从 build.gradle,

我有一个例外说

原因:org.springframework.beans.factory.NoSuchBeanDefinitionException:没有为依赖找到[org.vaadin.spring.http.HttpService]类型的合格bean:预计至少有1个bean可以作为此依赖的自动装配候选者。依赖注解:在 org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoSuchBeanDefinitionException(DefaultListableBeanFactory.java:1301) 在 org.springframework.beans 的 {@org.springframework.beans.factory.annotation.Autowired(required=true)}。 factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1047) 在 org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:942) 在 org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement。

我很感激任何帮助。

4

1 回答 1

3

vaadin4spring 0.0.5 是最后一个独立版本,您应该这样使用它(不要混用!)。下一个版本的 vaadin4spring 将建立在官方 spring vaadin 插件之上,但这是正在进行的工作(有关此的详细信息在这里:https ://github.com/peholmst/vaadin4spring/issues/164 )

对于您的具体问题,请参阅https://github.com/peholmst/vaadin4spring/issues/206

有关 spring 安全示例,请参见 vaadin4spring:

https://github.com/peholmst/vaadin4spring/tree/v0.0.5/samples/security-sample

于 2015-04-09T19:50:24.813 回答