Questions tagged [spring-roo]

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).

Spring Roo is a next-generation rapid application development tool for Java developers. With Roo you can easily build full Java applications in minutes. It differs from other productivity tools by focusing on:

  • Rapid results
  • 100% develop in Java
  • Easy-to-use
  • Fast and simple to remove
  • Totally compromise free
  • Active, helpful community
  • Comprehensive technology integrations
  • Extension points via Roo add-ons
  • Spring-certified architecture

Related Tags:

More Information:

http://projects.spring.io/spring-roo

http://en.wikipedia.org/wiki/Spring_Roo

https://github.com/spring-projects/spring-roo

http://www.manning.com/rimple/

1269 questions
7
votes
3 answers

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
gpasse
  • 4,380
  • 7
  • 44
  • 75
7
votes
4 answers

How to display an particlar attribut in a selectbox in a ROO-generated application

I am currently getting myself into Spring-Roo and Spring-MVC. I have a fairly simple application that Roo generated for me. It consists of two entities, Record and Car, where Record has a reference to one particlar car. After the initial setup I…
lostiniceland
  • 3,729
  • 6
  • 38
  • 50
7
votes
2 answers

Difference between Spring Roo and JHipster

I've been running some experiments with my own with Spring Roo and it seems to be pretty cool, but i heard that JHipster is better. What's different between Spring Roo and JHipster?
Don Wito
  • 71
  • 1
  • 3
7
votes
2 answers

Reserved SQL keyword 'User' is not permitted as simple type name

When I gave the roo command entity --class ~.domain.User in the roo shell, I got Reserved SQL keyword 'User' is not permitted as simple type name What I want to know is that, is there a way to gave alias name to the entity ? Because I do have a…
zawhtut
  • 8,335
  • 5
  • 52
  • 76
7
votes
14 answers

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. However, I still get the following error:…
user224270
  • 557
  • 3
  • 7
  • 19
7
votes
3 answers

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 project using Roo and what i would like to know…
marcosbeirigo
  • 11,098
  • 6
  • 39
  • 57
7
votes
2 answers

CreateProcess error=2, The system cannot find the file specified Roo

I'm busy doing the Pizza Tutorial and when ever I get to the perform tests command I get the above error. I checked Windows Path and added all the necessary links to the STS file. I am at a loss. This is the fourth time I have tried this tutorial…
Dino
  • 561
  • 3
  • 10
  • 21
7
votes
4 answers

How to implement Scaffolding in Spring 3.0

"I am using spring maven project and want to implement Scaffolding in it so that I can generate DAO's, services and spring form dynamically depending upon model. How it can be achieved?"
Kedar
  • 167
  • 1
  • 7
7
votes
1 answer

How can work on my controller by Spring-Security?

I'm stuck in this issue for a long time. I want to use @Secure to add Access Control to my controller ArticleController.java like this: @RequestMapping(headers = "Accept=application/json") @ResponseBody @Secured("ROLE_ADMIN") public…
JerryCai
  • 1,663
  • 4
  • 21
  • 36
7
votes
2 answers

Spring-security cannot match "?parameter" format?

I use spring-security to secure my web, when I'm learning it by spring-roo generated config file in applicationContext-security.xml, in node: It means when you want to…
JerryCai
  • 1,663
  • 4
  • 21
  • 36
6
votes
1 answer

Does the use of nosql (say mongodb) increase development productivity?

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 oriented webapplication . If your DB is 3NF and you…
Roland Kofler
  • 1,332
  • 1
  • 16
  • 33
6
votes
1 answer

Spring Roo: use JPA entity as a DAO

The code below is what Spring Roo generates by default, the EntityManager is injected in your domain model POJOs with the rest of the methods to manage the entity (save, update, delete, findXXX, ...). Maybe it is a more object-oriented approach (in…
Guido
  • 46,642
  • 28
  • 120
  • 174
6
votes
2 answers

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 (type 'help' then ENTER to learn about this…
Nilesh
  • 4,137
  • 6
  • 39
  • 53
6
votes
2 answers

Spring Roo - How to use it without AspectJ?

Is there a way to have Roo generate real POJOs and not AspectJ enhanced ones? I want more PO in my JOs, AJ make it look like POJOOS (POJOs on Steroids) to me
Eran Medan
  • 44,555
  • 61
  • 184
  • 276
6
votes
1 answer

How can I provide my own @id field using Spring Roo and JPA

I am trying to get Spring Roo to use my own @Id field instead of generating one. @Entity ... @RooEntity @Table(name = "usr") public class User { @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name = "usr_id") private…
David Tinker
  • 9,383
  • 9
  • 66
  • 98