我有几个需要用vaadin编写的应用程序。我正在尝试将我所有的自定义组件和小部件集放在一个库中,完全像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为什么找不到呢?
发布于 2012-08-11 00:22:54
看起来你没有在你的小部件集定义中继承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" />
...https://stackoverflow.com/questions/11905423
复制相似问题