我一個Vaadin 8項目轉換爲7.當我運行顯示以下消息應用程式:問題從Vaadin 7轉換一個項目,以Vaadin 8與插件正在使用Vaadin 7
Widgetset 'com.vaadin.DefaultWidgetSet' does not contain an
implementation for com.vaadin.v7.ui.ProgressBar. Check the connector's
@Connect mapping, the widgetset's GWT module description file and re-
compile your widgetset.
組件它抱怨是vaadin插件
<dependency>
<groupId>org.vaadin.addons</groupId>
<artifactId>wizards-for-vaadin</artifactId>
<version>2.0.0</version>
</dependency>
Inside「的嚮導換vaadin」插件是使用進口com.vaadin.v7.ui.ProgressBar;
如何獲得「wizard-for-vaadin」插件與Vaadin 8打好?
您將需要獲得v8版本的wizard-for-vaadin插件。由於這個插件僅適用於服務器端,因此我認爲您可以獲取源代碼並自行將其升級到v8。 (當它有客戶端代碼時可能更難) –