Tagged Questions
Spring Roo is a lightweight tool aimed at developer productivity. Via an intuitive command line interface it supports operations such as Java web project creation, persistence configuration and view scaffolding. Roo creates a Java web project that uses the Spring framework, and leverage some best well known practices in Java development such as dependency injection, aspect oriented programming, object/relational mapping (O/RM).
47
votes
8answers
13k views
Grails vs Roo - why SpringSource is pushing two very similar technologies?
SpringSource (now VMWare) has two very similar technologies: Grails and Spring Roo. I have been using Grails, but I see that SpringSource is actively working on something that is a competitor for that ...
15
votes
6answers
569 views
Code Analysis Tools and Inter-Type-Declarations
I have a maven project generated by Spring Roo and use several tools (checkstyle, pmd etc.) to collect information about my project. (namely I am using codehaus' sonar for this)
Roo makes heavy use ...
14
votes
9answers
12k views
Spring roo Vs (Wicket and Spring)
Spring roo is new framework and I found it very interesting. I have been working on web application for last 3-4 years and Always found JSPs are hard to maintain across teams if everyone is not ...
13
votes
2answers
2k views
To roo or not to roo
I would like to hear opinions about Spring Roo for CRUD applications.
I've been using Groovy on Grails up to now but for this new project we are
not allowed to use Grails anymore (we have a list of ...
13
votes
5answers
10k views
Ruby on Rails vs Grails vs. Spring ROO vs. Spring App
I'm planning on writing a simple web application that will be used by lots of users (as complicated as a simple bookmarking app) and I'm trying to decide which framework/language to use.
I'm very ...
11
votes
1answer
692 views
Roo + GWT - good for developping?
I've been working on GWT projetcts for a few months now and I decided to give a try to this Spring Roo thing. I noticed that to go from 0 to the same results as with Roo it can take very long. My ...
10
votes
3answers
798 views
What is Spring Roo?
Despite all I've read, I still can't figure out what Spring Roo actually is, and that's after reading the first chapter of Spring Roo In Action, What is Spring Roo?! I understand the motivation for ...
9
votes
2answers
287 views
How do you work in a team with spring roo?
I'm evaluating Spring-Roo to use in one of my projects but I'm not sure how can it work within a team.
Everybody in the team can use the roo
console?
How do you commit your changes to
svn?
How do ...
8
votes
1answer
177 views
Creating a List<> Member with Spring Roo
The Spring Roo command field set creates a Set<> member.
field set --fieldName --type
How does one go about creating a List<> instead?
7
votes
3answers
950 views
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. I am having trouble seeing the big picture from ...
6
votes
1answer
62 views
How to switch a Spring Roo or Grails project from typical MVC to AJAX/JSON/REST
This might seem like an odd question, but I am trying to get a handle on what the "best practice" is for converting an application that is set up to use something like Roo's or Grails' generation of ...
6
votes
1answer
140 views
Does the use of nosql (say mongodb) increase development productivity? [closed]
I develop 3 to 4 Spring Roo applications a year currently with Hibernate and MySQL. It has been stated here at Stackoverflow that relational databases are not the best fit for a typical object ...
6
votes
14answers
4k views
Spring ROO issue with UrlRewrite in STS (eclipse)
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.
...
6
votes
3answers
777 views
Spring Roo and aspect-oriented programming
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 ...
5
votes
2answers
284 views
STS Spring with Roo and Maven - too slow? Tips and tricks needed :)
I am using STS and Java since a while for developing a web application. The project is configured for using Maven, Roo and MySQL as database. I often find that I waste a lot of time in the following ...
5
votes
2answers
358 views
Using roo to create a springsource project with mongo
Preface: I am coming from a .NET and PHP backround. I'm pretty comfortable with making a console app in Java. I've never used an ORM on any platform. I'm trying to learn enterprise java best ...
5
votes
1answer
842 views
Eclipse, JPA 2.0 metamodel generator and Spring Roo working together
Is there a way to put Spring Roo and JPA 2.0 metamodel generator to work together?
I have a Spring Roo project and use Eclipse as IDE. I was able to configure the Eclipse project and maven pom.xml to ...
5
votes
6answers
4k views
Best Web2.0 framework for Java? [closed]
this question is quite related to the one asked here, however, I am not interested in the best web framework, but in the best web2.0 framework for Java. First, here is what I want to achieve:
...
5
votes
3answers
106 views
Do aspects substitute repositories?
I started experimenting with Spring Roo just recently. It does a very nice job helping one build a domain model with integrated persistence rather quickly. As it adds persistence functionality in ...
5
votes
4answers
2k views
spring roo vs appfuse generate service /dao layer
I am looking for feedback from experienced users on spring roo and appfuse. Which do you think does a better job reverse engineering database tables and generating a service layer, dao layer, and jpa ...
4
votes
1answer
97 views
Spring Roo updating password field or not updating all fields
I have an entity User that has username, name, etc ...
User also has a password property. And I disabled rendering of it in list/show forms, but in the update form, field is set to type="password".
...
4
votes
1answer
279 views
How to do a not mandatory Drop Down Box in Spring Roo/Dojo?
In Spring Roo (1.1.5) I have an Entity "Book" that CAN have a reference to Entity "Publisher".
class Book {
@ManyToOne(optional=true)
Publisher publisher
}
Now I have the Roo generated ...
4
votes
1answer
205 views
Is Spring Roo the right tool for me? (See list of requirements in post)
I watched some videos, demos of Roo and I kind of liked it. However before starting using it, I'd like to ask few things more experienced programmers with Roo.
Roo uses lot of AOP. Is it okay to ...
4
votes
3answers
395 views
Learning Spring Roo without Starting from Entities
I just started learning Spring Roo. After reading creating web application in 10 minutes. I have the impression that Roo assumes that we have an entity concept ready, and create the controller ...
4
votes
4answers
1k views
springroo can't setup gwt
I have spring roo 1.1.2. I am creating new project like
project --topLevelPackage leraning.roogwt
then I setup persistence and add an entity
persistence setup --provider HIBERNATE --database ...
4
votes
1answer
2k views
Spring Roo, Hibernate, One to many relation creates additional table
I'm new to spring mvc, roo and hibernate.
I'm trying to create two tables with 1:M relationship.
For example,
I want two entities, Person and Car. One person can have many cars.
I've created ...
4
votes
3answers
1k views
Customizing the Spring Roo generated GWT user interface
How does one go about customizing the GWT user interface that Spring Roo automatically generates?
Am I supposed to change the Roo-generated source files? If so, will that not be clobbered the next ...
4
votes
1answer
469 views
Spring roo and GWT
Hey all,
I am trying to create an entity in spring STS with GWT scafolding. The entity is to be a superclass and abstract. When I tell roo to create the entity called Person, the following results.
...
4
votes
1answer
2k views
hot deploy in embedded jetty
I have a Spring Roo project and I use mvn jetty:run to run my app.
The only problem is changes to the *.java classes do not hot deploy, while changes to *.jspx hot deploy fine.
So how can I configure ...
4
votes
1answer
1k views
How to run Spring Roo generated tests against a different database to Tomcat?
I have a collection of integration tests that have been generated by Spring Roo for my domain objects (and DAO ITDs).
They appear to be fixed to use the "production" applicationContext.xml, which ...
4
votes
3answers
1k views
Can I use Spring roo in existing project that doesn't use Maven?
Spring Roo can be use in existing projects that follow standard maven layout.
So far this appears to mean that projects that doesn't use maven are out of luck.
I am wondering what (if any) are the ...
3
votes
1answer
63 views
Incomplete setter for set field+mappedBy
Scenario:
entity --class ~.domain.Team
entity --class Person
field reference --fieldName team --type Team
focus --class Team
field set --fieldName members --type Person --mappedBy team
controller all ...
3
votes
2answers
268 views
I want to disable Roo scaffolding
Because I have manually tuned my entities and controllers and view, I would like roo to change none of them. Nevertheless I would like roo to keep on scaffolding all new entities. How could I do that
3
votes
2answers
2k views
websphere 7 (and Spring Roo) incompatible with javax.el.ELException
I have a application where the frontend is based on the Spring Roo 1.1.2 jspx files.
Every think works fine in Tomcat 6, but if I deploy the same application in a Websphere 7 (class loader: parent ...
3
votes
1answer
391 views
Can't Run Roo Command!
I am trying to run command "Security SetUp" from roo shell that is embedded in SpringSource Tool Suite. But keep getting following...
Command 'security setup' was found but is not currently available ...
3
votes
2answers
1k views
Spring roo, field enum
I'm new to Spring MVC and Spring Roo,
What is field enum?
How can I enumerate all allowed values?
Is it implemented using lookup table or check constraint?
An example would be appreciated :)
3
votes
1answer
341 views
GWT SpringRoo: Exception thrown while constructing Processor object
I am building a simple SpringRoo + GWT app to be deploy to GAE. I'm just at the initial stage of development. I have a simple index.jspx page generated using SpringRoo to be handled by a SpringMVC ...
3
votes
2answers
180 views
Is Spring Roo only for making the skeleton of a site?
After many problems, I have finally set up Roo with a simple example.
Now I just want to know how far should one go with Roo.
I mean likes fields, classes, everything can be done through the Roo ...
3
votes
1answer
368 views
Why does Spring Roo give persist() Propogation.REQUIRES_NEW
I've been looking at the code generated by Spring Roo and I noticed that the persist() method it creates is given Propagation.REQUIRES_NEW. Wouldn't the default propagation be sufficient?
...
3
votes
1answer
594 views
SpringROO+GWT customization
I want to build a GWT application that doesn't use a database. I thought to use Spring ROO to get the initial configurations for it. A Spring ROO+GWT generated app has:
RequestFactory based ...
3
votes
1answer
441 views
Spring Roo project as batch job without transactions
I have a Roo project that works "fine" with transactions, but each .merge() or .persist() takes longer and longer time, so that what should've taken 10ms takes 5000ms towards the end of the ...
3
votes
1answer
277 views
What is the IoC / “Springy” way to handle MVP in GWT? (Hint, probably not the Spring Roo 1.1 way)
This is the Spring Roo 1.1 way of doing a factory that returns a GWT Activity (Yes, Spring Framework)
public Activity getActivity(ProxyPlace place) {
switch (place.getOperation()) {
case ...
3
votes
2answers
541 views
Pretty javascript multiselect widget suitable for Spring Roo / Web MVC project?
I'm looking for a Javascript multiselect to use on my Spring Roo / Web MVC project, and worried that I could spend a while adding a widget from a library that then breaks other stuff. Requirements:
...
3
votes
1answer
649 views
Spring Roo Presentation and Model binding
I am starting on Springsource using Spring Roo.
Q1. Am I correct to say that Spring Roo automates a lot of tedium out of Spring?
I am asking that because when I follow non-roo tutorials on Spring, I ...
3
votes
4answers
2k views
How to use JUnit tests with Spring Roo? (Problems with EntityManager)
I'm trying to write a JUnit test for a Spring Roo project. If my test requires use of the entity classes, I get the following Exception:
java.lang.IllegalStateException: Entity manager has not been ...
3
votes
2answers
3k views
How to bring Spring Roo & GWT together
I am trying to develop a Spring Roo/GWT app with the newest integration of GWT in Roo.
Getting the scaffolding to work is very straightforward, but I don't really understand how the RPC works there.
...
3
votes
2answers
1k views
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 ...
3
votes
2answers
1k views
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 ...
3
votes
2answers
3k views
Roo - add custom finder
I used Roo to create a project that uses existing database.
Im able to create dynamic finders, but I want to implement custom finder that will receive 4 parameters and use some of them to create Like ...
3
votes
7answers
2k views
appfuse vs roo - what would you use
Appfuse vs. Roo, what would you use and why?
What are the sweet spots of each.