Google Web Toolkit with Netbeans
- Read more about Google Web Toolkit with Netbeans
- Log in to post comments
# install gwt plugin in netbeans
NETBEANS > Tools > Plugins > Available plugins > GWT4NB > Install
# test, create new projects
export GWT_HOME=/opt/gwt-linux
cd $GWT_HOME
./applicationCreator -out $HOME/GWT-Sample org.kamal.hello.client.HelloWorld
/opt/gwt-linux/applicationCreator -eclipse MyProject com.mycompany.client.MyApplication
# rpc service demo
public void onModuleLoad() {
RootPanel.get().add(new DBQueryUsageExample());
}
# LINKS
http://www.netbeans.org/kb/60/web/quickstart-webapps-gwt.html
http://www.gwt-ext.com/demo/ - GWT-Ext Showcase
http://gwt.google.com/sam