vaadin 8 + spring自定义widgetset

时间:2017-11-24 17:32:12

标签: java spring maven gwt vaadin

我正在尝试使用spring + vaadin boot启动类的客户端组件。

问题可能出在自定义widgetset中。项目应该放在哪里?靠近客户端组件?资源(在资源中无法编译)

但是我的客户端组件没有被调用onStateChange。我尝试过各种各样但我无法处理它。

gwt package {
client {
connector extended by AbstractExtensionConnector with @Connect directivy 
ClientSide class with java
}
AppWidgetset.gwt.xml
}

impl
{
server {
Class with AbstractExtension
}

}


pom.xml
     <plugin>
     <groupId>com.vaadin</groupId>
     <artifactId>vaadin-maven-plugin</artifactId>
     <version>${vaadin.plugin.version}</version>
     <configuration>
     <extraJvmArgs>-Xmx1G -Xss1G</extraJvmArgs>

   <webappDirectory>${basedir}/target/classes/VAADIN/widgetsets</webappDirectory>
     <hostedWebapp>${basedir}/target/classes/VAADIN/widgetsets</hostedWebapp>
     <noServer>true</noServer>
     <persistentunitcachedir>${basedir}/target/tmp/gwt-unitCache</persistentunitcachedir>
     <compileReport>true</compileReport>
     <strict>true</strict>
     </configuration>
     <executions>
    <execution>
    <goals>
    <goal>update-theme</goal>
    <goal>update-widgetset</goal>
    <goal>compile
    </goal> <!-- Comment out compile-theme goal to use on-the-fly theme 
    compilation -->
     <goal>compile-theme</goal>
     </goals>enter code here
     </execution>
     </executions>

     </plugin>

1 个答案:

答案 0 :(得分:1)

WidgetSet.gwt.xml文件放在与您的窗口小部件类匹配的文件夹中的src / main / resources中。

如果我的小部件在

src/main/java/com/m1kah/vaadinapp/mywidget/MyWidget.java

然后我的widgetset文件将在此位置

src/main/resources/com/m1kah/vaadinapp/mywidget/Widgetset.gwl.xml

CSS样式和其他“公共”文件位于文件夹public中的相同资源路径中。