0

希望你在你的最后摇摆,但我需要一点帮助。我正在研究 vaadin portlet,我需要创建一个 vaadin 图表(示例)。我下载了所需的 jars(vaadin-charts-vaadin6-1.1.7.jar 和 gson-2.2.1.jar)并创建了一个应用程序,如下所示:

@SuppressWarnings("serial")
public class UserloginchartApplication extends Application {

    public void init() {
        Window window = new Window();

        setMainWindow(window);
        Chart chart = new Chart(ChartType.BAR);

        window.setModal(true);
        window.addComponent(chart);
    }
 }

在 tomcat 服务器上编译和部署后,我在 UI 上收到以下错误

Widgetset 不包含 com.vaadin.addon.charts.Chart 的实现。检查它的@ClientWidget 映射、widgetsets GWT 模块描述文件并重新编译你的widgetset。如果您已经下载了 vaadin 附加包,您可能需要参考附加说明。未渲​​染的 UIDL:-未渲染的 UIDL -com.vaadin.addon.charts.Chart(未找到客户端实现)id=PID3 高度=400px 宽度=100.0% confState={“chart”:{“type”:“bar”},“系列”:[],“导出”:{“启用”:假}}

谁能告诉我在liferay中实现/创建vaadin图表的步骤。

提前致谢:

-维卡什

4

1 回答 1

0

问题是 vaadin.addon.charts 有一些客户端小部件不包含在默认小部件集中,那么您需要重新编译小部件集。如果您使用 Maven 之类的构建收费,您可以这样做:

    <plugin>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin-maven-plugin</artifactId>
        <version>${vaadin.plugin.version}</version>
        <configuration>
            <gwtSdkFirstInClasspath>true</gwtSdkFirstInClasspath>
            <extraJvmArgs>-Xmx512M -Xss1024k</extraJvmArgs>
            <!-- <runTarget>mobilemail</runTarget> -->
            <!-- We are doing "inplace" but into subdir VAADIN/widgetsets. This way 
                compatible with Vaadin eclipse plugin. -->
            <webappDirectory>${basedir}/src/main/webapp/VAADIN/widgetsets</webappDirectory>
            <hostedWebapp>${basedir}/src/main/webapp/VAADIN/widgetsets</hostedWebapp>
            <noServer>true</noServer>
            <!-- Remove draftCompile when project is ready -->
            <draftCompile>false</draftCompile>
            <compileReport>true</compileReport>
            <style>OBF</style>
            <strict>true</strict>
            <runTarget>http://localhost:8080/</runTarget>
        </configuration>
        <executions>
            <execution>
                <configuration>
                    <!-- if you don't specify any modules, the plugin will find them -->
                    <!-- <modules> <module>com.vaadin.demo.mobilemail.gwt.ColorPickerWidgetSet</module> 
                        </modules> <gwtSdkFirstInClasspath>true</gwtSdkFirstInClasspath> -->
                </configuration>
                <goals>
                    <goal>resources</goal>
                    <goal>update-widgetset</goal>
                    <goal>compile</goal>
                </goals>
            </execution>
        </executions>
    </plugin>
于 2014-10-08T13:09:41.567 回答