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 ...
0
votes
1answer
21 views
Spring 3.2 bean with constructor fails to initialize because of an injected property using @Required
In a Spring 3.2 project, I am bootstraping a service bean which has an injected property. The property is injected using @Required @Value(...) from a property file. I am sure the property file is ...
0
votes
0answers
28 views
Can Access CSS File By URL, But Not From HTML
I have a Spring App with ThymeLeaf and Dojo that is causing me a problem. The CSS files are showing up aborted in Firebug when I reference them from my HTML file. However, when I go directly to the ...
0
votes
0answers
8 views
How to change the returned result of a Spring Roo function
I am using Spring Roo for my restFull web services. Working great. Now I want to change the default behaviour on all instances. When a post is done I need the resultant record Id returned. The Roo ...
0
votes
1answer
37 views
Spring Roo listing page not showing Foreign key but showing full dependent row
Using Oracle DB when we create the Spring MVC pages using Spring Roo command it creates pages with listing having foreign key replaced by the corresponding record.
I want to show the Foreign key only ...
1
vote
0answers
21 views
Adding odbc14.jar manually to Spring Roo project
I am getting error as
"Missing artifact com.oracle:ojdbc14:jar:10.2.0.4"
in pom.xml when i entered command,
jpa setup --provider ECLIPSELINK --database ORACLE
I googled and found out that
...
0
votes
1answer
25 views
Regular Expression for Email in Spring Roo
I am using Spring Roo and am having difficulty implementing the regular expression for the email field so that only properly formatted emails can be implemented into the field. When I run Tomcat and ...
0
votes
0answers
25 views
Spring Roo - How to include child relation attributes in parent jspx
I am new to Spring Roo technology. I have Client and ClientAddress JPA classes, ClientAddress refers to Client with CLIENT_ID foreign key.
JPA defines the relationship like this
...
0
votes
1answer
38 views
User registration validation through email with Spring Roo
I want to add a feature to my spring roo project. I have an user entity that logs into the application and adds additional users.
When I add those users there is an email adress(field) on which I want ...
0
votes
0answers
23 views
Spring Data, Mongo, Roo: how to embed the whole document, embed partially, embed reference
I do not have a clear understanding of how to include partially a document into another document, preferably - using Spring Roo.
Let say, we have Customer with lastname, birthdate, telephones, ...
0
votes
2answers
24 views
Trouble implementing Maven in STS
I am new to the SpringSource Tool Suite (STS) and am having trouble getting functions like perform tests or perform package to work.
I usually get an error that states:
CreateProcess error=2, ...
0
votes
0answers
25 views
Spring roo could not initialize proxy - no Session
I'm managing a project with Spring roo, and i'm using hibernate, when i try to use this controller methode i have this exception message: could not initialize proxy - no Session
...
0
votes
2answers
91 views
Exception trying to start web application (Spring Tool Suite 3.2.0 + Roo 1.2.3 + GWT 2.5.1 + Java 6)
I have created a roo project with GWT with the following commands in the roo shell (after creating the new project in the IDE):
persistence setup --database H2_IN_MEMORY --provider HIBERNATE
database ...
2
votes
0answers
38 views
how to write aggregater functions in spring-hibernate module?
I have a requirement like I have to find the max id from the table by passing two parameters to find the particular row, and I have set one value of the column in that row. I have requirement like I ...
0
votes
1answer
39 views
From Spring Roo, is it possible to create an html select with values changing dynamically depending on another 'select' choice?
I'm using Spring Roo to set up my project. I have one form with two selects, where the values of one are dependent on the value selected on another. Can I create this relationship and the set of ...
0
votes
2answers
61 views
Separate database configuration
I've been dealing with this problem for couple of days now and I can't get around to solve it. The working setup that I need is: two separate databases, one for JUnit testing and the other for the ...
-1
votes
0answers
41 views
Integrate GWT app and Command line Java utility using MVC pattern [closed]
I have a task to integrate a GWT application and a java command line utility , both are calling same Facade classes ( which have business logic )
Looking around the best possible way to do so , did ...
0
votes
0answers
14 views
How to change topLevelPackage in roo
I have an existing project and all my roo reverse engineering files are ending up in the wrong package. How do I change, or where does roo store, details on the --topLevelPackage which was used to ...
0
votes
1answer
38 views
Persistence Context with Roo
I am a little confused as to when things become detached and the scope of the persistence context. Are my entities only "managed" within each method that roo generates? I ask because I have read ...
0
votes
0answers
22 views
Cant run roo command in Mac OSX
I have downloaded Spring Roo onto Mac OSX. I have set a symbolic link to roo.sh in /usr/bin. There is execute permission on the script. But running even roo.sh in the bin folder of the raw roo ...
0
votes
2answers
50 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
1answer
21 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
74 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
118 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
44 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
28 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
61 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
133 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
73 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
41 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
35 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
19 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
35 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
46 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
47 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
42 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
53 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
208 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
45 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
37 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
40 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
94 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
118 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
140 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
38 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
197 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
35 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
74 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
59 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
155 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
25 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 ...
