Posts Tagged ‘GWT’

Maven + GWT I needed to create a GWT project using maven again. The original post lacked some details. This time, I got it to work with a slightly different steps. First, I ran the following command: mvn archetype:generate -DarchetypeGroupId=org.codehaus.mojo -DarchtypeArtifactId=gwt-maven-plugin -DarchetypeVersion=2.4.0 -DarchetypeRepository=repo1.maven.org Somehow, Maven didn’t pickup the group ID and artifact ID. So, I [...]

This howto helped me to create a GWT project using Maven. It even allows me to run the GWT project in development mode with Jetty, very sweet! On the other hand, OEPE’s Weblogic plug-in doesn’t play nice with GWT based project. Looks like I’ll continue use Maven to build WAR files.

History and tab panel in GWT

Posted: August 4, 2011 in howto, Technology
Tags: , , ,

I came across this tutorial and found it useful!

After I was so spoiled by GWT/Eclipse’s streamlined way of deploying a GWT application to the embedded server or Google App Engine, I was annoyed by how little support it has for other application servers. Fortunately, I was able to semi-automatically generate a WAR file for manual deployment on a remote server by following this [...]

GWT SimplePager

Posted: June 9, 2011 in howto, Technology
Tags: , , , ,

It’s unfortunate that my initial experience with GWT’s SimplePager wasn’t very positive. The paging behaviour toward end of the list showed the following: For the last page, pager would attempt to request record count at last index + page size. This would cause pager to go index array out of bound. i.e. Let’s say you [...]

GWT dev mode remote access

Posted: June 1, 2011 in howto
Tags: , , ,

I needed to access the GWT build-in server for Eclipse from another machine. A search on-line led me to this tutorial. It worked!