Roo Version : 1.2.0.RELEASE [rev 39eb957]
STS Version : 2.8.1.RELEASE (build id 201111221000)
Google Plugin for Eclipse version : 2.5.0.v201112160
GWT: 2.4.0 (installed via STS dash board)
Steps Followed.
1. Created Roo project from STS
2. Setup the JPA based persistance
3. Created Entities
4. Created the services for the entities
5. Web gwt setup
6. Update the Google Tool Kit in Properties to default SDK.
After this I find one maven error.
Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:exec-maven-plugin:1.2:exec (execution: default, phase: process-classes) pom.xml /CC-Server line 514 Maven Project Build Lifecycle Mapping Problem
When I tried to run the application as GWT application it failed.
javax.servlet.UnavailableException: in.vesar.cc.gwapp.server.CustomRequestFactoryServl et
When I examined i found that the GWT setup is not as expected.
Few of my observations are:
1. No Startup HTML Page.(So I Create one)
2. The run target in Pom.xml(maven) file for GWT plugin is referring ApplicationScaffold.html.I feel this should be index.(So I changed this to the file I created)
3. The module specified in Pom.xml(maven) file for GWT plugin is ${project.groupId}.ApplicationScaffold but point the default module created by roo(i.e roo in App.gwt.xml)
4. The configuration with id VerifyRequestFactoryInterfaces is refeing to a class ${project.groupId}.client.managed.request.Applicat ionRequestFactory which is not yet created.


Reply With Quote
