我在将Vaadin与Spring应用程序集成时遇到了一些麻烦。我把所有的bean都放在" rootcontext.xml"文件。我可以通过实例化" rootcontext.xml"来调用bean。然后为我的一个服务类调用bean。
我可以用这种方式填充表,但这是调用服务类的正确方法吗?因为我有更多的表必须调用它。
public final class TestTable extends Table {
private ApplicationContext applicationContext = (ApplicationContext) VaadinServlet.getCurrent().getServletContext()
.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);
private Service service = this.applicationContext.getBean("service",
Service.class);
public TestTable() {
service.findAll()
}
这是我的UI类:
@SpringUI
@Theme("dashboard")
@Widgetset("vaadin.DashboardWidgetSet")
public class TestUI extends UI {
/**
*
*/
private static final long serialVersionUID = -620721219079395670L;
private final DashboardEventBus dashboardEventbus = new DashboardEventBus();
@Override
protected void init(VaadinRequest request) {
setLocale(Locale.US);
DashboardEventBus.register(this);
Responsive.makeResponsive(this);
addStyleName(ValoTheme.UI_WITH_MENU);
updateContent();
// Some views need to be aware of browser resize events so a
// BrowserResizeEvent gets fired to the event bus on every occasion.
Page.getCurrent().addBrowserWindowResizeListener(new BrowserWindowResizeListener() {
@Override
public void browserWindowResized(final BrowserWindowResizeEvent event) {
DashboardEventBus.post(new BrowserResizeEvent());
}
});
}
private void updateContent() {
setContent(new MainView());
}
@WebServlet(urlPatterns = { "/TestUI/*", "/VAADIN/*" }, name = "TestUIServlet", asyncSupported = true)
@VaadinServletConfiguration(ui = TestUI.class, productionMode = false)
public static class TestUIServlet extends VaadinServlet {
}
}
我的root-context.xml文件位于/WEB-INF/spring/root-context.xml目录中。
Vaadin servlet的applicationContext.xml位于/WEB-INF/spring/vaadin/applicationContext.xml目录中。
这是我的web.xml。 Vaadin Spring教程说使用上下文加载器初始化' applicationContext.xml'。我可以将其路径添加到contextConfigLocation参数,但应该只有一个根上下文。
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
</web-app>
Vaadin配置类:
import org.springframework.context.annotation.Configuration;
import com.vaadin.spring.annotation.EnableVaadin;
@Configuration
@EnableVaadin
public class VaadinConfiguration {
@Autowired
private Service service;
@Bean
public UI ui() {
System.out.println(service.findAll().size());
TestUI testUI = new TestUI();
testUI.setService(service);
return testUI;
}
}
答案 0 :(得分:1)
我意识到的一个问题是我使用的是Vaadin Spring的错误版本。我使用的是Vaadin Spring 2.0,但它与Vaadin 7没有合作。所以我将它切换为1.2。
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-spring</artifactId>
<version>1.2.0</version>
</dependency>
我将Spring Vaadin Servlet配置移动到我的web.xml
<servlet>
<servlet-name>UIServlet</servlet-name>
<servlet-class>com.vaadin.spring.server.SpringVaadinServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>UIServlet</servlet-name>
<url-pattern>/UI/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>UIServlet</servlet-name>
<url-pattern>/VAADIN/*</url-pattern>
</servlet-mapping>
我还必须在配置类和UI类中添加一些Vaadin Spring注释。
@Configuration
@EnableVaadin
@EnableVaadinNavigation
public class VaadinConfiguration {
}
需要@EnableVaadinNavigation才能启用Spring Views的导航。
@SpringUI
@Theme("dashboard")
public class UI extends UI {
@Autowired
private SpringViewProvider viewProvider;
private final HorizontalLayout root = new HorizontalLayout();
private ComponentContainer content;
private Navigator navigator;
@Override
protected void init(VaadinRequest request) {
setLocale(Locale.US);
Responsive.makeResponsive(this);
addStyleName(ValoTheme.UI_WITH_MENU);
root.setSizeFull();
root.addStyleName("mainview");
setContent(root);
root.addComponent(new DashboardMenu());
content = new CssLayout();
content.addStyleName("view-content");
content.setSizeFull();
root.addComponent(content);
root.setExpandRatio(content, 1.0f);
navigator = new Navigator(this, content);
navigator.addProvider(viewProvider);
navigator.navigateTo(DashboardView.NAME);
}
}
我在UI中自动安装了SpringViewProvider,这也是识别使用Spring View注释的类的必要条件。
所有配置都可以在这里找到:
https://vaadin.com/wiki/-/wiki/Spring+Vaadin/I+-+Getting+Started+with+Vaadin+Spring+and+Spring+Boot