1

我正在尝试与集成SpringVaadin但我无法@Autowired在我的 Vaadin 类中使用注释。

首先,我创建了以下 maven 结构

在此处输入图像描述

这是我的web.xml

<web-app>
<display-name>Vaadin Web Application</display-name>
<context-param>
<description>Vaadin production mode</description>
<param-name>productionMode</param-name>
<param-value>false</param-value>
</context-param>

<context-param>
<param-name>contextClass</param-name>
<param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value>
</context-param>

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/application-context.xml</param-value>
</context-param>

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<listener>
<listener-class> org.springframework.web.context.request.RequestContextListener </listener-class>
</listener>

<servlet>
<servlet-name>Vaadin Application Servlet</servlet-name>
<servlet-class>com.mycompany.config.AutowiringApplicationServlet</servlet-class>

<init-param>
<description>Vaadin UI to display</description>
<param-name>UI</param-name>
<param-value>com.mycompany.ui.MyUI</param-value>
</init-param>
</servlet>

<servlet-mapping>
<servlet-name>Vaadin Application Servlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>

</web-app>

这是我的application-context.xml

<bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="org.postgresql.Driver" />
<property name="url" value="jdbc:postgresql://localhost/vaadin" />
<property name="username" value="postgres" />
<property name="password" value="tobbis" />
</bean>

<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="datasource"/>
<property name="persistenceUnitName" value="myUnit"/>
</bean>


<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>

<jpa:repositories base-package="com.mycompany.repository"></jpa:repositories>

<context:annotation-config/>
<context:component-scan base-package="com.mycompany" />

现在我在包UserService内创建了我的com.mycompany.services

@Service
public class UserService {

public void saveUser(User user){

    System.out.println("Test to Save");

}
}

最后,我有我想要注入服务的面板

public class UserPanel extends VerticalLayout {


@Autowired
UserService service;

public UserPanel() {
    // TODO Auto-generated constructor stub
    Injector.inject(this);

    service.saveUser();
}

}

但结果总是一样的

 Error creating bean with name 'com.mycompany.ui.UserPanel': Injection of autowired dependencies failed; 
 nested exception is org.springframework.beans.factory.BeanCreationException:
 Could not autowire field: com.mycompany.services.UserService com.mycompany.ui.UserPanel.service; 
 nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: 
 No matching bean of type [com.aiem.services.UserService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency.
 Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
4

5 回答 5

0

AnnotationConfigWebApplicationContext不适用于 XML 配置。它应该与带@Configuration注释的类一起使用。

由于您使用 xml 文件进行 Spring 配置,因此您应该从 web.xml中删除这些行:

<context-param>
<param-name>contextClass</param-name>
<param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value>
</context-param>

然后默认情况下 Spring 将使用XmlWebApplicationContext并获取您的 xml 文件。

于 2013-09-01T14:53:19.943 回答
0

尝试在 applicationContext.xml声明您的UserService

<bean name="userService" class="com.mycompany.services.UserService"></bean>
于 2013-06-27T15:30:07.773 回答
0

有一个通过注释启用自动装配的插件:http: //vaadin.xpoft.ru/。这是 Vaadin 网站的链接:http: //vaadin.com/addon/springvaadinintegration。希望能帮助到你。

于 2014-07-10T11:43:19.023 回答
0

我试过和你一样的场景。最后,解决方案在Vaadin 文档中。

似乎问题在于我们使用的是 Vaadin 上下文而不是 Spring 上下文,因此我们需要执行文档(SpringHelper)中显示的技巧来获取任何 bean。在 Spring 上下文之外,自动装配不起作用。

于 2014-05-14T13:44:32.153 回答
0

我所知道的,

Injector.inject(this);

不是来自 Spring 的东西,您可能会将它与另一个框架混合使用。

相反,我会制作UserPanel一个原型范围的 Spring 组件(这意味着它可以由 Spring 实例化和自动装配,但你仍然对它的生命周期负责)。

@Component
@Scope(SCOPE_PROTOTYPE)
public class UserPanel extends VerticalLayout {

UserPanel请注意,任何时候从上下文中检索都会创建一个新实例(例如,在另一个对象中自动装配)。最好通过显式调用来自己控制实例的创建

context.getBean(UserPanel.class)

在正确的时间。

于 2013-06-27T15:46:23.000 回答