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
13
votes
2 answers

Roo + GWT - good for developing?

I've been working on GWT projects 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 first thought was: "this is great"! But once you've…
code-gijoe
  • 6,949
  • 14
  • 67
  • 103
13
votes
5 answers

Spring Tool Suite 3.6.1 won't update

Updating the Spring Tool Suite in Eclipse Luna, I get the following error since I turned off the option to download updates for Eclipse 3.7: **An error occurred while collecting items to be installed session context was:(profile=DefaultProfile,…
gechenique
  • 309
  • 1
  • 3
  • 15
12
votes
3 answers

store strings of arbitrary length in Postgresql

I have a Spring application which uses JPA (Hibernate) initially created with Spring Roo. I need to store Strings with arbitrary length, so for that reason I've annotated the field with @Lob: public class MyEntity{ @NotNull @Size(min = 2) …
Javi
  • 19,387
  • 30
  • 102
  • 135
12
votes
3 answers

Can't get Intellij to use the AspectJ compiler

Everything I see online just says to select the "ajc" compiler from the list of compilers, but that's not an option for me. I've got javac, jikes, eclipse, and javac-in-process, but that's it. As it is my project compiles from the command line with…
Phil Kulak
  • 6,960
  • 8
  • 45
  • 50
12
votes
2 answers

STS Spring with Roo and Maven - too slow?

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 cases: No Roo response - when I modify a domain…
mm24
  • 9,280
  • 12
  • 75
  • 170
12
votes
1 answer

Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.0

I switched from q4e Helios to Indigo m2e plugin and my Maven 2 project no longer works. I had a ROO-generated Spring MVC project. This is what I get: Plugin execution not covered by lifecycle configuration:…
alexm
  • 510
  • 1
  • 8
  • 19
11
votes
3 answers

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?
Stanley.Goldman
  • 4,317
  • 2
  • 23
  • 25
11
votes
1 answer

How can I delete an entity in Spring Roo?

I have accidentally created couple of entities in Roo. Is there a way to delete these? I browsed through the commands list but did not come across anything meaningful? Is there a command or will I have to start from scratch?
Nilesh
  • 4,137
  • 6
  • 39
  • 53
11
votes
2 answers

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 you manage merges and branching? Thanks!
11
votes
1 answer

Nested objects have not been saved by Spring JpaRepository

I have a Spring Roo application with GWT. On server-side I´ve got simple JpaRepository interfaces for all entities like: @Repository public interface MyEntityRepository extends JpaSpecificationExecutor, JpaRepository
Tony Skulk
  • 237
  • 1
  • 3
  • 11
11
votes
4 answers

Advantage of using Spring roo over play framework (if we use Spring framework)?

I recently stumbled upon Play framework while evaluating frameworks to use in a project. I need to use Java language and JVM (so grails is not an option). From initial impression Play framework looks very similar to Django (or Rails), but Spring Roo…
18bytes
  • 5,951
  • 7
  • 42
  • 69
10
votes
2 answers

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?
Emir
  • 1,586
  • 3
  • 16
  • 32
10
votes
1 answer

Update Field definition in Spring Roo

I defined a field in Roo with: field number --fieldName firstNum --type java.lang.Integer But I really wanted to define it with --notNull. Can I update this in Roo, or do I have to update the generated files manually outside of the Roo console?
Xetius
  • 44,755
  • 24
  • 88
  • 123
10
votes
3 answers

Installing roo in 5 minutes

I just wanted to spend half an hour to try out spring roo - but failed miserably. The Spring roo project page on spring.io simply tells to add a maven dependency. But I'm not aware of any public maven repository providing it The Project page on…
Tommy
  • 739
  • 8
  • 24
10
votes
4 answers

Spring IP address validation

I'm looking for a possiblity to validate IP addresses in my Spring roo project. My entity looks like this package com.ip.test.domain; import javax.persistence.ManyToOne; import javax.validation.constraints.NotNull; import…
mbs
  • 421
  • 2
  • 8
  • 28
1
2
3
84 85