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
10
votes
3 answers

mvn tomcat:run - change default maven tomcat port

Trying to follow Spring roo tutorial steps I perform: $ mkdir sample $ cd sample $ roo roo> script --file filename.roo roo> quit $ mvn tomcat:run and when I launch mvn tomcat:run I get hanged up console on INFO: Starting Coyote HTTP/1.1 on…
pvllnspk
  • 5,667
  • 12
  • 59
  • 97
9
votes
5 answers

Is it possible to generate entities from an existing database model in JHipster?

Is there a way to generate entities from an existing database model or do I have to create all entities with yeoman (yo) on my own? I've heard about such a technique from the Spring Roo project.
seveves
  • 1,282
  • 4
  • 17
  • 37
9
votes
3 answers

How to make string primary key hibernate. @GeneratedValue strategies

My goal is to create an entity Device that has a unique field IMEI and I would like to use it as a primary key, and specify it at device registration time (manually specified, while creating the entity). I use Spring roo tool for development and…
yaroslav prokipchyn
  • 472
  • 2
  • 8
  • 17
9
votes
12 answers

appfuse vs roo - what would you use

Appfuse vs. Roo, what would you use and why? What are the sweet spots of each.
flybywire
  • 261,858
  • 191
  • 397
  • 503
9
votes
0 answers

Quartz-scheduler DB Lock Exception

We have an application which is using Quartz to schedule some job. It uses the JDBCJobstore for persisting job related Meta-Data. Hitherto it has been using datasource which was defined in quartz.properties. But according to upcoming requirement we…
mawia
  • 9,169
  • 14
  • 48
  • 57
8
votes
3 answers

Update Entity using EntityManager JPA EclipseLink

I am getting a ERROR: duplicate key value violates unique constraint "users_pkey" Detail: Key (userid)=(2701) already exists. whenever i use the persist model to update my user entity. In the code sample below: SetLoginAttempts takes in a user…
Warz
  • 7,386
  • 14
  • 68
  • 120
8
votes
1 answer

Spring Roo plugin directory

Is there a public directory of Spring Roo plugins available? I know only this forum thread Spring Roo Community AddOns, but I know that there are a lot of others plugins available, anyway I did not find a page which lists them all. Grails for…
ChrLipp
  • 15,526
  • 10
  • 75
  • 107
8
votes
1 answer

How does jboss forge compares to spring roo?

I've just found out Jboss Forge I wonder how it compares with Spring Roo Can anybody highlight the principal coincidences and differences of these two tools?
opensas
  • 60,462
  • 79
  • 252
  • 386
8
votes
2 answers

How to add fields to entities in the roo-shell?

I'd like to add fields to an already created entity in the roo-shell but I don't know which command puts an entity in the current context. Which one does that?
Hedge
  • 16,142
  • 42
  • 141
  • 246
8
votes
5 answers

experiences of OpenXava

Based on the demos and documentation, OpenXava looks very impressive framework for quickly building an RIA from a Java domain. If it's really as good as it claims, why isn't it more well known? I'd like to hear from people with practical experience…
Dónal
  • 185,044
  • 174
  • 569
  • 824
8
votes
5 answers

Spring aspectj jar not configured correctly

I am getting this error when I tried to use a JPA object created by Roo. Entity manager has not been injected (is the Spring Aspects JAR configured as an AJC/AJDT aspects library?) I have followed some online advice to add the…
newguy
  • 5,668
  • 12
  • 55
  • 95
8
votes
3 answers

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 the Google announcement page. For those without…
Mark M
  • 1,807
  • 2
  • 21
  • 40
8
votes
3 answers

can Locale object be stored in database with hibernate

I have following entity: @RooEntity Class X { @NotNull private Locale locale; } Is it possible to store toString() representation of Locale object in database and when retrieving I can still get Locale object? Can I use @Basic annotation…
hrishikeshp19
  • 8,838
  • 26
  • 78
  • 141
8
votes
2 answers

No matching factory method found: factory method 'aspectOf()'

I have the following aspect: package trc.suivi.aspects; import java.util.Date; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import trc.suivi.domain.EvenementPli; import…
balteo
  • 23,602
  • 63
  • 219
  • 412
7
votes
1 answer

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 controllers (which provides basic CRUD…
Andy
  • 8,749
  • 5
  • 34
  • 59
1 2
3
84 85