我有几个应用程序需要用vaadin编写。我试图将我的所有自定义组件和widgetset放在一个库中,完全按照vaadin的方式,并简单地将该库包含在我的其他项目中。
我的第一个小部件在它的库中,maven编译库和小部件设置正确,但是当我将它包含在我的实际应用程序中时,我得到了这个
Widgetset does not contain implementation for org.vaadin.jonatan.contexthelp.ContextHelp.
Check its @ClientWidget mapping, widgetsets GWT module description file and re-compile your widgetset.
In case you have downloaded a vaadin add-on package, you might want to refer to add-on instructions. Unrendered UIDL:
-Unrendered UIDL
-org.vaadin.jonatan.contexthelp.ContextHelp(NO CLIENT IMPLEMENTATION FOUND) id=PID178 followFocus=false helpKey=112 hideOnBlur=true
-variables
selectedComponentId=
hidden=true
Complex field
为什么不找到它?
答案 0 :(得分:0)
看起来您没有从窗口小部件集定义中的Vaadin默认窗口小部件集继承:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.7.0//EN" "http://google-web-toolkit.googlecode.com/svn/tags/1.7.0/distro-source/core/src/gwt-module.dtd">
<module>
<inherits name="com.vaadin.terminal.gwt.DefaultWidgetSet" />
...