Hello,
how can I bind on new form using spring 3 annotated controller? On SimpleFormController I had bindOnNewForm but now?
thanks in advance
Type: Posts; User: lime; Keyword(s):
Hello,
how can I bind on new form using spring 3 annotated controller? On SimpleFormController I had bindOnNewForm but now?
thanks in advance
Hello,
I've got a problem with form:input tag using Spring 3RC1.
I've got a double field in a bean, if the value is not validated because, for example, it contains non-digit characters, the...
Hello,
I've got an application that runs without problems for hours and then stop with this error:
org.springframework.web.util.NestedServletException: Request processing failed; nested...
Hello,
I'm encountering the same problem today using spring 2.0.6 (also with 2.0.5):
Failed to convert property value of type [java.lang.String] to required type [java.lang.Double] for...
yes I think it can...
it was my first solution... now I think it is the only solution
thanks
could you give me an example?
What should I do with my obj.list[i].price in onBind to apply a specific format?
thanks
no, I need different format for quantity and currency double...
Yes I Know, the problem is that the name in my example is not fixed but depends on the index of the object in the list: obj.list[i].price
so which is the...
Hello,
I need a little help.
I've got a form object with a list property, the items in this list contain many Double fields, my objective is to set a different editor only for one of these...
Hello,
I'm using VelocityEngine to send html emails like described in this article: http://www.theserverside.com/blogs/showblog.tss?id=SpringVelocityEmail
I have to format numbers and dates in...
Hello,
is it possible to save the PDF generated by a subclass of AbstractPDFView to a file on the server before/after browser rendering?
my intention is to generate the file one time only and...
Hello
where can I find an example of sessionForm Usage?
specifically I haven't understand:
- when is destroyed and recreated the command object in session?
- how can I intercept the event...
OH MY GOD!
You are right!! 1 day lost for this stupid error...
thank you very much!
sure:
<spring:nestedPath path="bolla">
<spring:bind path="bolla_test.tkboll">
<input type="hidden" name="<c:out value="${status.expression}"/>" value="<c:out...
tkboll is in an hidden field and it' correctly sent...
thanks for your answer lucker, this is my formBackingObject impl
protected Object formBackingObject(HttpServletRequest request) throws ModelAndViewDefiningException,...
Hello I've got this exception binding a nested List property of a command class after a submit:
org.springframework.beans.InvalidPropertyException: Invalid property 'posis[0]' of bean class...
Hello
can I set the formView as succesView? I've tried it but it seems that referenceData isn't called so form's dropdown are empty...
ok I've found something:
- an exception catched by SimpleMappingExceptionResolver generate a WARN message not an ERROR
- log4j SMTPAppender sends an email only for level >= ERROR
so: how can...
Hello,
if I use SimpleMappingExceptionResolver to capture, for example, org.springframework.dao.DataAccessException my error page is correctly displayed but the error is non logged in stdout,...
Hello,
I have to integrate some very old style jsp with my springframework.
These jsp use beans with <jsp:useBean ... > tag: how can I get the beans initialized by Spring in jsp?
Can I use Spring's OracleLobHandler with ibatis database layer? How?
everything works fine
it was a misunderstanding of Velocity template calls, sorry
Hello,
I'm trying Velocity Spring support
I have a question: I've set resourceLoaderPath with value /templates where templates is a directory under my web app root
In this directory, and its...
hello
I've read the tutorial by Matt Raible and everything works fine with ClassPath loader and File Loader (using "resourceLoaderPath" of VelocityEngineFactoryBean) but I'm not able to make it...