hi
I found out that it is working ; )
but I am not able to use the spring-beans in a
constructor of a handler.
do someone know why it is like that?
Type: Posts; User: andree; Keyword(s):
hi
I found out that it is working ; )
but I am not able to use the spring-beans in a
constructor of a handler.
do someone know why it is like that?
hello
I wanted to ask if there is someone who already uses Spring as business object IoC container.. and JSF as web layer
I tried to use the
DelegatingVariableResolver as described in the...
Thanks :) ok I read the reference for Spring MVC.
So if I do not misunderstand the reference it means
that:
1. you can suit in some way the workflow of the DispatcherServlet
namely when...
hi,
Keith writes that Spring MVC has more extensibility points. Is there someone who could give a short sum about which extensibility points are given by Spring MVC?
thx
andree
hi,
do maybe someone know if it is possible to use the
tag <input type="file" name="file"/> inside of a JSP for the AWFC?
In the reference docs there is an example with the <form ..> tag.
But I...
hi mdeinum
:) ohhh .. I see .. instead of ${status.count-1} I can use ${status.index}
I removed the varStatus="status" so it couldn't work then .. now I see clear what you meant..
thx
hello mdeinum,
I get a:
java.lang.NumberFormatException: For input string: ""
So i.e. ${status.index} is empty .. what do I need to do to
use status.index? The <bind> tag? I thought it is...
I found out that you can use a status variable in c:foreach.
<form:form commandName="commandobject">
<core:forEach items="${encyclopedia}" var="item" varStatus="status">
description for...
hello
I would like to use a List of items on a form where a user can type data in.
Now the problem to me is that I do not know how to do it ;).
Ok for example when there is an encyclopedia...
hi xmaniac
thank you for your answer. In fact you are right :) It explains this
matter accurately.
It means you need to use it like that:
that means you can use RedirectView inside of a controller ..
http://www.springframework.org/docs/api/org/springframework/web/servlet/view/RedirectView.html
In a SimpleFormController you could...
hello
I wonder if something like that is possible with the AbstractWizardFormController:
The case is that someone can order pizzas. So there is one Order and in an order there can be more than...
hello karldmoore
thank you for your answer.
I mean JSTL is fine. But I am looking for taglibs about visual components like tables, calender .. and things similar to desktop GUI libraries.
...
hello,
in the original docs of Spring MVC shipped with the distribution
one can read about the taglib:
My question is if you know, maybe, some good standard taglibs for that purpose which...
hi
if you want to display properties you can do it like that:
${simpleBean.simpleProperty}
or objects:
hello ... using this:
<context-param>
<param-name>webAppRootKey</param-name>
<param-value>your.root</param-value>
</context-param>
I get the following. Thanks for any help ..
see also: http://www.onthoo.com/blog/programming/2005/04/hibernate-moving-day.html
ok in the note you can read that this filter will not flush the Hibernate Session
by default (same thing with OpenSessionInViewInterceptor)..so this is maybe one side effect.
When in single...
hello!
in the API of Spring for the OpenSessionInViewFilter ..http://www.springframework.org/docs/api/org/springframework/orm/hibernate3/support/OpenSessionInViewFilter.html
..you can read:
"A...
<?xml version="1.0" encoding="ISO-8859-1" ?>
<%@ include file="/WEB-INF/jsp/include.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
...
hello
thank you for your answers. Yes of course it is was the NullValueInNestedPathException:
org.apache.jasper.JasperException: org.springframework.beans.NullValueInNestedPathException:...
hi
I solved this problem by implementing the method
protected Object formBackingObject(HttpServletRequest request)
throws Exception{..}
hello ..
does it mean that the method: formBackingObject(HttpServletRequest request)
is used to instantiate an object and to return that object so that Spring MVC
then can populate that object...
hi!
I tried to use the model objects as command objects.
Unfortunatelly I found a problem with it.. When I have a class 'User'
and this class has a reference on an "Address" object .. Spring...