-1
votes
0answers
26 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
1answer
83 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
0answers
39 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
1answer
34 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
111 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
35 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
2answers
464 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
205 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
199 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, ...
1
vote
2answers
133 views

@ModelAttribute not works when a declared field is left blank

Below are my code... @RequestMapping(value = "/submitnewstory", method = RequestMethod.POST) @ResponseBody public String save(@ModelAttribute("storyInsertForm") StoryInsertForm uploadForm, ...
0
votes
1answer
62 views

How to scaffold all finder methods in Spring Roo

How I can see all list of ActiveRecord methods ..which I can add by make: finder list finder add... And then something like this: web mvc scaffold --class name --entity ...
0
votes
0answers
43 views

Selecting from hierarchy of parent (many-to-one) entities on entity create form

In my application, I have a chain of many-to-one relationships between a set of entities. Each entity is a "group" of the next (except for the "botton" one), and has it's own attributes (like ...
0
votes
0answers
43 views

The Roo shell does not generate ITDs for my @RooConversionService

I have added the following class in my Roo app: /** * A central place to register application converters and formatters. */ @RooConversionService public class ...
0
votes
0answers
59 views

How to trigger .jspx roundtripping in Spring Roo without restarting the Roo shell?

I have a Spring Roo project with generated .jspx views. I know about the jspx roundtripping capabilities, e.g. that setting the z attribute controls whether Roo updates the respective areas. If I ...
0
votes
0answers
77 views

Spring Roo+Security: Prevent sniffing in Spring MVC

I got a Table Role, and i got a table User with password and a reference to one role. My problem is now: Anyone can see and change the User's role. Is there any way to prevent the access to the ...
1
vote
1answer
156 views

Is there any add on for Thymeleaf for Spring Roo?

Now I develop Spring project with Spring Roo, I want to use Thymeleaf instead of default .japx page. How to generate Thymeleaf in Spring Roo.
0
votes
1answer
31 views

Undo --disallowedOperations with ROO MVC

As part of a larger ROO based MVC project I have previously issued the following ROO command: web mvc scaffold ~.domain.Yyy --class ~.web.YyyController --disallowedOperations update Requirements ...
0
votes
1answer
372 views

Spring MVC Controller Return JSON - Error 406

After searching all the related links in StackOverflow for the given title I am posting this question. My Controller code is: @RequestMapping(value="/user/update", method = RequestMethod.GET, ...
0
votes
1answer
150 views

jQuery Mobile unable to scroll in Spring MVC/ Roo page

I created a sample web app using Spring Roo and embedded jQuery Mobile 1.1 sample code into a empty jspx page. Below i pasted in the code i used. This does display just fine. The problem is that I ...
2
votes
2answers
181 views

How to implement Scaffolding in Spring 3.0

"I am using spring maven project and want to implement Scaffolding in it so that I can generate DAO's, services and spring form dynamically depending upon model. How it can be achieved?"
0
votes
1answer
255 views

@requestmapping params=“form”

Could someone explain the params="form" parameter in requestmapping? For example like this: @RequestMapping(value = "/{id}", params = "form", method = RequestMethod.GET) I understand the {id} is ...
0
votes
1answer
155 views

Spring Roo multimodule.roo doesn't compile: Failed to resolve local artifact

I have set up a project using multimodule.roo which is provided with spring roo 1.2.3. However, when i run 'mvn tomcat:run', it gives the following error: [INFO] Scanning for projects... [INFO] ...
2
votes
3answers
83 views

Dynamically reacting to changes in select

I'm building a Spring MVC based webapp in which I'll be using several drop-down menus. What I'm trying to accomplish is that when the user selects one of the available options, a description of that ...
3
votes
1answer
155 views

Migrating from Roo to Grails

I have an web application developed using Spring Roo. This is just a standard Roo application with only a few Java classes that were not generated by Roo itselef. After using Grails for a while in ...
1
vote
2answers
152 views

Spring MVC - collection of string

I want to have an entity with a collection of string values, its to store receipt numbers which can be alpha-numeric, hence the need to store strings. How do I add such a field to an entity with ...
1
vote
2answers
79 views

Difficulty adding a new view to a Roo-generated project

I'm trying to add my custom view and controller to a VERY basic roo-generated project. By using Spring Tool Suite (STS, Spring 3.1) I created a new project and then ran the following 3 commands: ...
0
votes
3answers
403 views

Read only fields in spring-roo or spring-web-mvc

I have what appears to be a common problem within spring-mvc. Several of my domain object have fields that are not updatable so in my view I am not binding these fields. For competeness sake The way ...
0
votes
1answer
342 views

Error in Java Import statement “The import javax.validation.constraints.NotNull cannot be resolved”

Iam new to Java and Spring Framework. After developing Spring roo project, I found following errors in class : The import javax.validation.constraints.NotNull cannot be resolved NotNull cannot be ...
0
votes
2answers
90 views

Why is 'web mvc install language' not available?

I tried to add german language support to my ROO project by using the roo shell command web mvc install language --code de the the following messaged appeared. Command 'web mvc install ...
0
votes
1answer
213 views

BindingResult rejectValue for Map field of form backing object

I have a Java class 'QueAndAns' which has one field private Map<String,String> questionAndAnswerMap; On my JSP page I have <form:form action="${submitURL}" method="POST" ...
2
votes
1answer
137 views

How can I get Roo to produce a link that opens a create or edit page instead of text when it generates output for a page?

Currently in the list view for an entity, references to other entities are just output as the key value in plain text. Instead, I would like references to other entities to be output as hyperlinks. ...
0
votes
2answers
369 views

field:select with a static List in Spring Roo

Hy everyone. I have a simple problem here. in my order class i have OrderStatus field, which is an enum in the database. (Can be "Under process" or Dispatched) My problem is when im using ...
1
vote
1answer
97 views

How to capture login name and restrict the view to only records submitted by the user

I'm using Spring Roo, and Spring MVC. I have Set up Spring Security to use a MySQL database and auth using the standard schema, table users, table authority. What I have is a webapp to take orders ...
2
votes
1answer
75 views

what are the requirements for spring insight to work on cloudfoundry with a spring app

I have a spring mvc generated app (through ROO) running in cloudfoundry. I could also deploy spring insight into it. but my app shows up with "Insight: not supported on this stack". Shouldn't it ...
0
votes
1answer
204 views

Issue with a CURL GET request and Spring Mvc request mappings

I am trying to GET the following method using CURL: @RooWebJson(jsonObject = Geolocation.class) @Controller @RequestMapping("/geolocations") public class GeolocationController { @Autowired ...
0
votes
1answer
206 views

Spring Roo: How to get the attributes of the model passed to the view

I have created a project using Spring Roo. I have a User entity (MODEL), which I pass to a .jspx file (VIEW). I would like to display the User information such as name, address and other attributes ...
0
votes
1answer
408 views

If condition in table tag

I am using Spring Roo. There is table:table and table:column tags. <table:table data="${memberDetails}" id="memberDetail" delete="false" create="false" ...
0
votes
1answer
100 views

Database reverse Engineer exception javax/management/InstanceAlreadyExistsException Spring Roo

I have Oracle 10g configured as a database in my roo. This works properly with entity commands, but when i am trying to use database reverse engineer, i am getting below exceptions. Can anyone please ...
0
votes
0answers
206 views

Best approach to generated menus in Spring Roo/Spring MVC

This is probably a dumb question, but I am trying to figure out the best approach to generating a custom menu tree in Spring Roo. Basically, I don't need the menus Roo generates for me. What I have ...
0
votes
1answer
810 views

Spring MVC - mvc resource

I have a spring project where, on a linux/tomcat6 server we have an external folder for person photos inside "/var/projectname/personphotos". Tried making a symbolic link and the like and nothing ...
0
votes
1answer
598 views

Spring Roo Tomcat issue

I am facing a really annoying issue with Spring Roo and Tomcat. Following the spring roo pizza shop tutorial I have issued the following commands: project com.springsource.pizzashop // Setup JPA ...
0
votes
0answers
101 views

How to manage dropdown for optional reference in Spring jspx select tag?

I have a optional reference in an Entity. @Entity public class Questionarie { @ManyToOne(optional=true) private OptionGroup optionGroup; but in view jspx, it forced to select one, how can I ...
0
votes
1answer
812 views

How to resolve this message -Failed to convert property value of type java.lang.String to required type

I was building an simple application using spring roo. After doing certain job, I have removed roo completely. So here is my controller methods for creating new data.. @RequestMapping(params = ...
1
vote
1answer
233 views

Spring Roo - binding entity to controller method paramter field

I have roo entity with one reference filed: @RooJavaBean @RooToString @RooJpaActiveRecord public class ActivatedConfiguration { @NotNull @OneToOne @JoinColumn(unique = true, nullable = false) ...
0
votes
1answer
387 views

Multiple persistence files in spring

I'm trying to create multiple modules with multiple persistence xml files. Idea is to keep entity classes inside same module it belongs to. Module 'A' configured with JPA with persistence.xml and ...
-2
votes
2answers
305 views

The £ sign is shown as a diamond with a question mark in the middle

I'm creating a webapp which involves displaying financial data to the user. Being from the UK and using GBP £ for currency, this character is used a lot. However, every now and then, the £ is shown ...
5
votes
1answer
1k views

Spring's ReloadableResourceBundleMessageSource not finding properties file

I have two files under the WEB-INF/i18n directory: application.properties messages.properties I have properly configured my ReloadableResourceBundleMessageSource bean as follows (spring mvc): ...
1
vote
1answer
2k views

Spring MVC - Constraint validation with annotations - Error messages not displayed

I would like to be able to display my entity field constraints validation errors in the web interface. For example, I have the following constraints defined on my entity: @RooJavaBean @RooToString ...
0
votes
0answers
170 views

Disappearing MVC handlers in Spring Roo/MVC

I am using Spring Roo, which underneath is Spring MVC. I have been using it for a while, but recently ran into a problem that has completely baffled me. I have a Controller with a mixture of methods ...
1
vote
2answers
241 views

Spring Roo “Base” URL

I'm current building a fairly simple webapp using Spring Roo. It seems, however, that Spring apps by default deploy to "/{app name}", rather than "/" as the top level directory. That is, controllers ...

1 2 3