-
Nov 23rd, 2005, 03:18 AM
#1
problem with Spring 1.2.6
Hello,
i have an application that works fine un Spring 1.2.5.
i update to 1.2.6, and not work.
in a FormController, i have:
public ModelAndView onSubmit(
HttpServletRequest request,
HttpServletResponse response,
Object command,
BindException errors)
throws Exception
{
int idEntidadReceptora = RequestUtils.getRequiredIntParameter(request, "idEntidadReceptora");
_logger.info("IdEntidadReceptora...." + idEntidadReceptora);
Pago pago = (Pago)command;
_logger.info("IdEntidadReceptora...." + pago.getIdEntidadReceptora());
...
well, the request parameter is ok, get "30"
but the int in the command object is wrong: "24"
what happens?
thans in advance,
César.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules