spring-roo

GWT now has spring roo support, what will this mean to GWT developers?

I have been using GWT with App Engine for a while now. Recently there was an announcement that GWT will support Spring Roo and SpringSource Tool Suite (http://googlewebtoolkit.blogspot.com/2010/05/gwt-21-milestone-1-is-now-available.html). I am having trouble seeing the big picture from the Google announcement page. For those without muc...

Spring Roo unable to generate Selenium tests because of Xerces error

After watching Roo Google IO, I decided to try it out using this tutorial, but I'm getting stuck when trying to create Selenium tests. ~.web roo> selenium test --controller ~.web.PizzaOrderController Created SRC_MAIN_WEBAPP/selenium Created SRC_MAIN_WEBAPP/selenium/test-pizzaorder.xhtml Created SRC_MAIN_WEBAPP/selenium/test-suite.xhtml...

Trouble getting started with Spring Roo and GWT

I am trying to get started with SpringRoo and GWT after seeing the keynote... unfortunately I am stuck at this issue. I successfully created the project using Roo and added the persistence, the entities and when I perform the command "perform package" I get this error: 23/5/10 12:10:13 AM AST: [ERROR] ApplicationEntityTypesProcessor ca...

Project generation problem using Spring Roo

Hi, I just downloaded SpringSource Tool Suite, and tried to generate a demo application using roo, but i'm getting error below Code: Created /home/dev/springsource/workspace/demo/pom.xml Undo create /home/dev/springsource/workspace/demo/pom.xml Invalid dependency scope: PROVİDED [Timer-0] NullPointerException at org.springframework.r...

self referencing object in JPA

Hello, I am trying to save a SystemUser entity in JPA. I also want to save certain things like who created the SystemUser and who last modified the system User as well. @ManyToOne(targetEntity = SystemUser.class) @JoinColumn private SystemUser userWhoCreated; @Temporal(TemporalType.TIMESTAMP) @DateTimeFormat(iso=ISO.DATE_TIME) private ...

Spring Roo from WSDL?

Hi folks, Spring Roo + GWT is very exciting but I'd like to use an existing Web Service as a backend so I was wondering if there is any way to configure Roo to use a WSDL as the starting point rather than the entity description (and have it wire in the Jax-WS calls to the service). Thanks! ...

Spring Roo and aspect-oriented programming

Hello, i've been running some experiments of my own with Spring Roo and it seems to be pretty cool, but i noticed that this tool makes heavy use of AOP on the model layer. I'm thinking about creating a real project using Roo and what i would like to know is: Why AOP is everywhere? Is that ok? What are advantages and disadvantages of t...

Spring ROO issue with UrlRewrite in STS (eclipse)

Hi. I'm having trouble figuring out how to solve this issue. I have a file called: "urlrewrite.xml" which was automatically generated by spring ROO after running the "controller" command in ROO Shell. However, I still get the following error: "Referenced file contains errors (http://tuckey.org/res/dtds/urlrewrite3.0.dtd). For more i...

Grails/Roo for a .Net developer

I am currently picking up Grails and Roo to expand my skills and to have a bit of fun. The vast majority of training materials appear aimed at new developers or Java developers. Does anyone know of any guides, resources or have any tips and anecdotes for translating existing development experience with .Net (C#/ASP.Net/Asp.Net MVC)? ...

Spring Roo > Help needed with 'reference' field in petclinic sample

I ran the clinic.roo sample. Relevant portions having to do with 'reference' fields below: field string --fieldName firstName --sizeMin 3 --sizeMax 30 --class ~.domain.AbstractPerson field string --fieldName lastName --notNull --sizeMin 3 --sizeMax 30 field string --fieldName address --notNull --sizeMax 50 --sizeMin 1 field string --fie...

cloud portability

may i know how portability is gae application. let say i have an application that using comet feature, task queue..etc and not using bigtable and i want to deploy on vmware/amazon will it run? ...

How to avoid hard linking Frontend assets In Spring MVC

I am new to spring MVC coming with experience using PHP MVC frameworks and ROR. I am having a hard time finding the appropriate way to organize and include front end assets into the view templates. Here is the default code Roo produces for the default style sheet: <spring:theme code="styleSheet" var="roo_css"/> <spring:url value="/${r...

Why can't I use Spring:url in an href?

I have seen several examples using <a href="<spring:url value='/about/' />" >About </a> I try this and get an error from Jetty Caused by: org.apache.jasper.JasperException: /WEB-INF/views/footer.jspx(6,22) The value of attribute "href" associated with an element type "null" must not contain the '<' character. Is there some encodi...

How do I extract the request URL to the views using Spring Roo?

I am using spring roo. I am not able to find a method to extract the request URL from the browser in the template. eg: http://localhost:8080/mysite/about/advisors . I want to extract advisors from it. I tried using ${pageContext.request.requestUri} but it returns the url like default.jspx. Please tell me how to do it? ...

bigtable springroo

i looked through the expense example, but it doesn't show how to use google'KEY' as primary key. Any example of open source project that using springroo to generate complex bigtable schemas? would be good reference for newcomer, on de-normalized table structure..etc . ...

Spring Roo MVC view engine

Hi, At first I would like to know who use spring-roo framework? At second I would like to know is it possible to change default view engine of spring-roo. Spring claims that roo is absolutely new productive framework (some kind of mix with productivity abomination - SpringMVC and big, performances-poor dinosaurs - Grails). By default ...

How can one rollback commands in Spring Roo?

Ben Alex has a slideshow introducing Spring Roo. On slide 8, there is the claim "Even if you make a mistake, Roo will rollback changes!" I'm unable to find actual documentation of this feature. Does anyone know how this can be accomplished? ...

Spring roo working

Hello... Anybody worked in Spring Roo????? I am new to spring roo... So need some help on how to build applications in roo... I tried for the tutorial on springsource... But is thr any more source or examples for the same? ...

Does Spring Roo GWT integration support RDBMS database

We are planning to use Spring Roo to generate GWT artifacts, would it be possible to use our RDBMS database or should the application rely on the app engine datastore if we eventually deploy the application on google app engine. ...

Problem with @OneToMany annotation with Spring Roo

I'm trying to use Spring Roo to generate entities with a @OneToMany unidirectional relationship. Here's what I've tried: entity --class ~.family.Child field string --fieldName name controller scaffold ~.web.ChildController entity --class ~.family.Father field string --fieldName name field set --fieldName children --element ~.family.Chi...