Hi,
I created a small twitter like application with spring roo (1.1.5).
Now I want to index my tweets with solr.
I added the solr addon as described here:...
Type: Posts; User: builderdash; Keyword(s):
Hi,
I created a small twitter like application with spring roo (1.1.5).
Now I want to index my tweets with solr.
I added the solr addon as described here:...
Hello,
After scaffolding the project with roo, I modified a lot of files and kept everything in sync with roo (eclipse and sts). Now I wanted to add selenium tests, but I always get an error in...
You could use dojo to add tabs or even pagination to your menu.
Just follow the examples described here:...
You could set the render attribute to false of the generated create and update views.
<field:input field="fieldName" id="fieldName_Id" render="false" z="user-managed"/>
To keep your old data...
Okay I found a way to fix this
http://forum.springsource.org/showthread.php?p=351683
But I think it could be a nice improvment to roo to change the behavior of the render attribute. Setting a...
Ok, I fixed it by removing the @Valid Annotation for the update method.
Now my target object is not automatically validated.
So I need to add a Validator and check for errors.
After that I merged...
Hi fraveau,
I'm facing with the same problem
http://forum.springsource.org/showthread.php?t=105620
Did you find any solutions?
tob
I have a mvc generated view and I want some fields not be displayed when updating the entry.
So I set the render attribute of the field:input tag to false
<field:input field="login"...
Same problem using roo 1.1.2.
I copied some Converters from ApplicationConversionServiceFactoryBean_Roo_ConversionService to ApplicationConversionServiceFactoryBean and modified them to my needs....
Calendar fields are not correctly shown in the roo generated mvc list.jspx files.
For example I have a calendar field:
@NotNull
@Future
@Temporal(TemporalType.TIMESTAMP)
...
Hi there,
I'm facing the same problem.
I did the following steps:
1. I created the entities and fields
entity --class ~.domain.Product --testAutomatically
field string --fieldName name...
Here is an example:
First you need to define a valid configuration like this:
<bean id="xsltController" class="com.company.app.MyController" />
<!-- View Resolver -->
<bean...
I'm having the same problem.
Even the docs of spring still relate to the deprecated AbstractXsltView class.
http://static.springframework.org/spring/docs/2.5.x/reference/view.html#view-xslt
Thanks for your help John,
I build a noop actionRequest and now it works.
I'm using the standard liferay buttons to change the window state, so I think its a liferay problem.
tob
Hi there,
I'm using spring-webmvc-portlet 2.5.6 to build a portlet for liferay 5.1.2.
I build my portlet as described in the petsample. I have several views defined by different RequestMappings...
Thanks for the help.
I used a own written HibernateUtil Class to manage my session
public class HibernateUtil {
private static final SessionFactory sessionFactory;
private static...
How can I have a new session per request?
Can you give my some clues?
I steped a little bit deeper into my problem.
Each time a load an object, it will be saved into the hibernate session.
Now, when I change an attribute to an empty value, the object is not valid any...
Hi,
I'm using Spring 2.0.3 with Hibernate 3.2.2.ga in a webapp.
I encoutered the following problem:
I have a form with a text field wich represents a database table entry.
When I remove the...
Thanks Macar,
now I automaticly submit my form with the isFormSubmission() method and header forward to my successView.
@mdeinum:
As far as I see it is not possible to overwrite the final...
Thanks,
but I want to redirect my page on initial display time and not on submit. That's why I need to overwrite my formView in the formBackingObject method or in showForm.
Hi,
I've got the following problem.
I have got a workflow to change an object. So in a SimpleFormController I provided a formBackingObject method to do this.
But on some cases I do not want to...
Thanks Jörg,
I also use the spring lucene modules 0.8. This package requires spring 2.0.3. I did not check that maven dependency.
Now I switched back to spring 2.0.3.
Greetings from Leipzig...
Locking in the changelog of spring I have found the following additional information in the Changes of version 2.0.4 (2007-04-10)
http://static.springframework.org/spring/docs/2.0.x/changelog.txt...
servus,
I develop a webapp using maven2, spring2 and jetty6. Everything works fine until I decided to update to the latest spring version (from 2.0.3 to 2.0.5).
Now I have got the following...