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

learn more… | top users | synonyms

0
votes
1answer
11 views

Spring Roo @RooJpaActiveRecord parameterized the JPA table catalog

I need a why to change the JPA catalog element in my java class? We have many database environments which we need to be able to deploy our application too. Example: In your dev environment we have a ...
0
votes
0answers
9 views

How to specify a custom settings.xml for Spring Roo in order to avoid regular user_home/.m2/settings.xml.

Since Spring Roo works with Maven and it picks settings.xml from the .m2 folder in user_home path, I am not able to run perform test and perform eclipse command since my settings.xml is configured for ...
0
votes
1answer
30 views

Spring roo: Cannot update user data which was inserted by PhpMyAdmin

I use spring roo to build a CMS webapp. This app of course, has user management function. My problem is if I use PhpMyAdmin to insert user information into database and then goto my app to modified ...
0
votes
0answers
64 views

Permgen Memory Leak with hot redeploy and Oracle database

i've got a SpringRoo-based application that is running in a production environment, that is causing severe permgen memory leaks after some hot redeploys. In order to "find and fix" the leak and to ...
0
votes
1answer
35 views

Spring Roo mangaged entities: dissable optimistic locking

Do someone know how to disable optimistic locking in Spring Roo managed entities? I generated entity annotated as follows: @RooJavaBean @RooToString @RooJpaActiveRecord public class CoolDomain { } ...
0
votes
0answers
23 views

Error using persist()

I have this code: user.setFirstName(requ.getParameter("nombre")); user.setLastName(requ.getParameter("apellidos")); user.setEmailAddress(requ.getParameter("email")); user.persist(); And I'm ...
0
votes
1answer
28 views

Spring MVC-Hibernate error: BasicDataSource is not found

I created a spring mvc project using Spring Roo, with MySql database and Hibernate provider. The problem is that when I run it I get the following error: java.lang.ClassNotFoundException: ...
0
votes
1answer
70 views

Spring Roo OneToMany relationship not showing in JSON

I am trying to get a OneToMany relationship using Hibernate, roo, and JSON. I was able to see the children of the parent via the jspx page by adding <field:display field="children" ...
0
votes
1answer
39 views

Spring roo one to many not sorted

The default one to many relationship in Spring Roo has a Set variable for maintaining relations data. public Set<MyChildObject> Parent.getChildren() { return this.children; } when I try ...
0
votes
0answers
38 views

Catching a “canceled” event from the server

I have a pretty dumb page that uses Java as the server. The page currently allows the user to upload an excel file and the server parses through it. Now the trick is, when there are errors in the ...
0
votes
1answer
29 views

My custom accessor is never used and only the field default value is used by hibernate validator instead

I have the following code inside a javabean: @AssertTrue private boolean addressReferenceValid; public boolean isAddressReferenceValid() { if (addressType.equals(AddressType.ON_THE_FLY_ADDRESS) ...
0
votes
1answer
11 views

Spring Roo + Webflow: Could not serialize flow execution.

this is my error when I try to open the flow : Could not serialize flow execution; make sure all objects stored in flow or flash scope are serializable But all my models are @RooJavaBean. Is ...
0
votes
1answer
28 views

Spring roo - few doubts - JAX-RS, removal

I am evaluating spring roo for one of our development project. Can someone help me know whether my understanding is correct ? Spring ROO has JAX-RS implementation. If spring roo is removed from the ...
0
votes
0answers
33 views

Spring Roo shell deletes my Roo_Controller.aj file after push in

After pushing in a couple of methods, the roo shell will delete my aj file. Just copying any of these methods to the main the Controller java file would cause this: Deleted ...
0
votes
0answers
43 views

Overwrite aspectj annotation using XML file

We used Spring-roo reverse engineering tool in order to generate a Java class library that describe the structure of a database. We are using this auto-generated Java library to access data ...
1
vote
1answer
41 views

Why Spring Roo is showing only a single addon?

Running addon search --refresh returns only a single result: roo> addon search --refresh Successfully downloaded Roo add-on Data 1 found, sorted by rank; T = trusted developer; R = Roo 1.2 ...
1
vote
1answer
43 views

Database: Foreign Key Enforcement

I'm sure this could be answered but don't exactly know where. Preface: Ours is a billing solution. Application design is pretty simple, we create web store for businesses and provide credentials to ...
0
votes
1answer
144 views

Spring 3.2: @WebAppConfiguration breaks existing @Transactional tests

Greetings. I have a Roo generated web app. I want to test my controller. So am using spring-test-3.2. Using STS 3.2. Embedded Derby for testing. The test suite fails when the controller test ...
0
votes
1answer
32 views

Spring web application templates for user management

Spring Roo is pretty useful tool and i like it - you can setup basic structure of Spring project in the minutes. I wonder if you could recommend me some Spring-based projects which could be reused ...
0
votes
1answer
29 views

how to create my queru in spring roo

i am a beginner. I am try to created a custom finder. and used "repository jpa " command. this is my repository: @RooJpaRepository(domainType = Speaker.class) public interface SpeakerRepository ...
0
votes
1answer
32 views

Spring roo jams at create new spring roo project

just wanted to know if anyone had encountered this problem in the past and whether they had resolved it. I use the STS program on my mac but any time I try to create a new roo project the program ...
0
votes
0answers
59 views

Prevent getters/setters from generating for @Transient fields

Spring Roo has an @RooJavaBean annotation which generates AspectJ getters and setters for non-transient fields. The problem is that it also generates them for transient fields. I have this in ...
0
votes
1answer
110 views

<script> tag doesn't close properly

In my default.jspx which contains the basic layout for the page I am trying to import some jquery libraries as follows <head> ... <spring:url ...
0
votes
1answer
93 views

Override EntityManager.remove() in Spring Roo

I would like to override the EntityManager.remove() method for certain entities so that I can set an active boolean attribute to false rather than remove the object from the database entirely. This ...
0
votes
1answer
33 views

Spring Roo Authority Levels

I have a simple web app i am testing out. It has two levels i.e admin and normal user. The project also has three entities. What i am trying to achieve is an instance where a user cannot delete any ...
1
vote
1answer
120 views

How to order hashset in Jackson? @JsonPropertyOrder did not work

I have two entity, Survey and Information. Survey Entity: @RooJavaBean @RooToString @RooJpaActiveRecord(table = "information") @JsonPropertyOrder({ "seq"}) public class Information { @NotNull ...
0
votes
0answers
30 views

database introspect command running failed

spring roo version is 1.3.0 roo> jpa setup --database MYSQL --provider HIBERNATE --password rootroot --userName root --databaseName test roo> database introspect --schema test addon search ...
0
votes
1answer
68 views

Timestamp on Spring roo

I added the add on for time stamp on spring roo to a particular entity. The time stamp works fine, that is to say, when listing all entries in an entity the date created and updated fields are ...
0
votes
1answer
47 views

Email notifications in Spring Roo

I have a web app I am working on which has admin and basic user levels. There are three entities on the admin level and the basic user is allowed to view or alter just two levels. I would like an ...
0
votes
1answer
124 views

My Spring application leaks database connections whereas I use the default Roo configuration

I am encountering an serious issue with my application. It leaks database connections whereas I use the default Spring Roo datasource configuration as follows: <bean ...
0
votes
1answer
24 views

Tiles in tags possible?

I'am using spring roo v.1.2.3. Roo generated *.tagx-s, *.jspx-s and views.xml-s that is good. But can I put those *.jspx page fragments in *.tagx-s. For example there is a tag table.tagx and I want ...
0
votes
1answer
77 views

Using values from properties file in spring roo

I'm new to spring and spring-roo. I try to build an application and read some key value pairs from a properties file. I created a myconfig.properties file and saved it to ...
2
votes
1answer
71 views

Generate add() and remove() methods automatically for an @ElementCollection

I have an entity containing an @ElementCollection of Strings: @RooJavaBean public class Foo { @ElementCollection private Set<String> names; } Roo generates getNames() and ...
1
vote
1answer
77 views

JSP EL/Apache Tiles — return object has composite key

I have identified a problem using Spring MVC/Apache Tiles. update.jspx presents an update form for current entity(Position.java) which has a composite key: @RooJpaActiveRecord(persistenceUnit = ...
1
vote
2answers
95 views

Why cannot I use persist in a object which has been taken from database?

I thought that I can do persist using the method persist of entitymanager in my objects of spring. Actually I use spring roo. But when I take a object from database I cannot do it: object.persist(); ...
0
votes
0answers
87 views

Spring Roo + JSF: common approach to customise input field

When using the JSF front-end, what is the best approach to change input field type? I have the following task: to implement password/confirm password Primefaces inputs instead of Roo-generated common ...
1
vote
2answers
405 views

How to make string primary key hibernate. @GeneratedValue strategies

Sorry if this question was already asked, I've read some articles but didnt find the answer. My goal is to create entity Device that has unique field IMEI and i would like to use it as primery key, ...
0
votes
1answer
195 views

spring roo frontend twitter-bootstrap integration

I want to develop a pretty standard webproject with all basic functionalities such as landingpage, user registration, login and so on. Since I'm familiar with Java and Spring, I set up the a project ...
0
votes
1answer
63 views

Installing the SpringRoo Git addon issue

I'm using version 1.2.3 of Spring Roo on Linux Mint. I want to install the Git addon and as per SpringRoo in Action, I'm doing this: roo> addon install bundle --bundleSymbolicName ...
0
votes
0answers
112 views

Spring Roo: dropdown by ajax or jquery

In a page there are 35 texts fields .I want to manage if Product Not Procured then only 9 fields shown on a page ,after filling the page When we change the status to Product Procured Not ...
0
votes
1answer
36 views

STS Spring Roo not creating entity

I just download the full STS and created a Roo project. I executed persistence setup --provider HIBERNATE --database HYPERSONIC_PERSISTENT and everything worked. Then I executed database ...
0
votes
1answer
513 views

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. ...
1
vote
1answer
33 views

How can I access the underlying column after defining a @ManyToOne relationship on it in Spring?

I'm using Spring 3.2 with Roo 1.2.3 to build a database-backed Java application via Hibernate. I have several bidirectional OneToMany/ManyToOne relationships among the tables in my database. When I ...
3
votes
3answers
193 views

Spring roo, apache tiles display model attribute which was set in controller

I'm using Spring roo, and in one of the controllers I'm setting the model attribute "error" with a string as below: //uiModel.addAttribute("error", "Duplicate name for Vendor"); ...
0
votes
0answers
46 views

Spring Batch add Roo native

When I try add Roo native to Simply Spring Batch project.. Roo console return: version is required for org.springframework.batch:spring-batch-test but I include in pom.xml this library: ...
0
votes
0answers
83 views

Roo + GWT - change default generated list object from CellTable to DataGrid

I'm evaluating using Spring Roo with GWT. On the face of it it looks great - just define the entities to Roo and off it goes and writes all you need. In the examples it looks impressive - however as ...
0
votes
1answer
65 views

Spring ROO custom finder

I use Spring ROO , I success to generate finders. the problem is that every property is in its own menu, I want to generate a custom finder in one form. I started by adding a method in my entity, ...
0
votes
1answer
181 views

Spring MVC 3 with Dojo's QueryReadStore

I have a Spring project based on a Spring Roo template. I want to implement an autocomplete in a combobox. Afer hours of researching I found that using dojox.data.QueryReadStore is my best option, ...
0
votes
0answers
101 views

Spring Roo. Database reverse. Hibernate JPA 2.0 @ManyToMany user “follow” users. foreign contraint fails

I'm trying to implement the follows relationship between users where an user "follows" others users. A table with users and another table "FOLLOW_T" with two fields "FOLLOWS" and "FOLLOWED" each one ...
0
votes
0answers
36 views

Spring Roo silently ignoring DBRE directives

Anyone experiencing the following oddness with Spring Roo:? When using DBRE to create an entity from a MySQL DB, Roo either does nothing, or uses the wrong package name for the target package. For ...

1 2 3 4 5 17