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
0
votes
1 answer

Implementing cross-validation in java

I use Spring Roo + jpa + hibernate and I would like to implement cross-validation (validation of several fields at the same time) in my application. I am not sure how to go about implementing it. Can anyone please advise me and/or direct me to…
balteo
  • 23,602
  • 63
  • 219
  • 412
0
votes
1 answer

JSPX - How to add javascript in jspx

In my web application I am using JSPX (Spring ROO). I need to add javascript in JSPX. can anyone share any useful link to guide me in adding it. Actually the problem is to close the session when the user closes the browser. I tried to add the…
user1514499
  • 762
  • 7
  • 26
  • 63
0
votes
2 answers

Spring Roo Create Controller & View

I'm making a Spring Roo application. I'm using hibernate with a Reverse Engineered MSSQL DB and I want to create a different version of list.jspx (similar but features a WHERE clause) called listtermianted. What steps do I need to take to create a…
eric MC
  • 766
  • 2
  • 10
  • 36
0
votes
1 answer

Spring Roo - To close the session when the browser is closed

I am using Spring-ROO as well as Spring security for my web application. I have set the session-timeout as 10. On closing the browser, the session is not getting closed automatically. Can anyone tell any method to close the session when the browser…
user1514499
  • 762
  • 7
  • 26
  • 63
0
votes
1 answer

jspx - how to add wordwrap in a jspx file?

Using Spring ROO - I have a field in my JSPX file in which I set the range of characters as 15 to 200. So when the user enters a value with 200 characters - while displaying it is coming as a straight line instead of word wrap functionality. Can…
user1514499
  • 762
  • 7
  • 26
  • 63
0
votes
1 answer

How to generate code in java file rather than in aspectJ file when creating and advanced roo addon?

I am in the process of creating an advanced Roo add-on. Besides the fact that there is almost no existing documentation, and I'm hitting on multiple issues, the one that gives me now headaches is the following: I need to modify a method from a…
Radu
  • 96
  • 2
  • 7
0
votes
1 answer

Auto-populating Model with user information for all @Controller

I have a unique problem I am trying to solve with a Spring Roo-built site that I recently added OpenID support for. I posted something on the Spring Forums, and tried to describe the problem to the best of my ability, but so far I haven't received…
CodeChimp
  • 8,016
  • 5
  • 41
  • 79
0
votes
1 answer

Spring Roo Web MVC Insert - No Default Primary Key

I have a web MVC project generated by Spring roo. I reverse engineered a MSSQL DB and have the need to create my own primary keys but am unable to insert using the inputs Roo generated (anticipates an auto increment or self-generated ID). Any ideas?…
eric MC
  • 766
  • 2
  • 10
  • 36
0
votes
1 answer

Jqgrid search results pagination with Spring 3.0

I have several jqgrids running and all are functioning fine. However, when I do a search, I am only displaying ten search results per page. Whenever there are more than ten results, clicking on page two has no effect on the grid. Here is one of my…
Faiyet
  • 5,341
  • 14
  • 51
  • 66
0
votes
1 answer

Spring Roo Database Reverse Engineer DBO?

I'm reverse engineering a Database in Spring Roo. The commands database reverse engineer --schema no-schema-required (all that the roo shell presents me with) and database introspect --schema no-schema-required both return the message Schema(s)…
eric MC
  • 766
  • 2
  • 10
  • 36
0
votes
3 answers

SPRING ROO: (MVC) java heap space -> lazy loading not working

(1st of all.. sorry for my english..) so I have been working on a spring roo project.. i'm doing reverse engineer from a mysql db with like 30 tables. the problem is that it throws me the "java.lang.OutOfMemoryError: Java heap space" error because…
aLee
  • 11
  • 3
0
votes
0 answers

Spring Roo PUT request from jquery.ajax

I am making a call to my web service that is wired up in roo to do a put. I am using the HiddenHttpMethodFilter in order to route the call to my PUT handler on the server side. My Put method service sides looks as such. @RequestMapping(value =…
0
votes
2 answers

Weird behavior when persisting data using eclipselink and mysql

I'm developing a new application, my start point was Spring Roo, so I kind follow the same architecture that it does. I have chosen eclipselink as my JPA implementation and MYSQL as my database. The core of the application is a webcrawler that…
Panthro
  • 3,247
  • 2
  • 32
  • 37
0
votes
1 answer

How to enable Datanucleus Support in SpringSource tool suite project

I have a Spring Roo project in which I have to use mongoDB using datanucleus and JDO.Presently when I generated all my classes from the below commands then i Found that all the annotations were taken from JPA. //create top level package project…
Abhinav
  • 1,720
  • 4
  • 21
  • 33
0
votes
1 answer

Hybrid Multi Module Maven Project with Spring Roo - Multiple JPA Persistence Units

I'm trying to create a hybrid multi-module maven project, where some projects are managed by Spring Roo and others are independent. This is my project structure so far: Root Project (root POM) | | -- commons   (maven module, Spring Roo Managed, JPA…
João Simas
  • 231
  • 1
  • 4
  • 11