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 [...]
Posts Tagged ‘GWT’
GWT, Maven, Eclipse and WebLogic: take 2
Posted: April 9, 2012 in howto, TechnologyTags: Eclipse, GWT, java se 6, maven, WebLogic
How to create a GWT project using Maven
Posted: February 28, 2012 in Life in generalTags: Eclipse, GWT, maven, OEPE, WebLogic
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, TechnologyTags: GWT, howto, Java, Tutorial
I came across this tutorial and found it useful!
Create a WAR file for a GWT application
Posted: June 9, 2011 in howto, TechnologyTags: Eclipse, GWT, howto, Java, Netbeans
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 [...]
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 [...]
