Hi,
I have problem with injecting my property wich is a Map with Enum keys in my web application.
My class with Map property:
public class SomeServiceImpl implements SomeService{
Type: Posts; User: PiratDrogowy; Keyword(s):
Hi,
I have problem with injecting my property wich is a Map with Enum keys in my web application.
My class with Map property:
public class SomeServiceImpl implements SomeService{
Try to use <form:form commandName="yourBackingObject"> tag.
And use:
<form:input path="children[${status.index}].firstName>
inside <form:form ... > tag instead of yours <input name...>...
OK, the problem is solved. Redirecting after validation was wrong so there was no errors available on my JSP.
Hello,
I've encountered some problems with displaying spring validation errors in JSP page. The problem is, that validation of command object works fine, but errors are not displayed in my JSP.
...
OK, the solution of above problem is very simple to achieve when the list contains String values.
Example:
public class BeanService{
private List<String> list = new ArrayList<String>();...
Hello,
I am still new to Spring MVC and I have some problems with command object list.
I have dynamically generated form in JSP witch contains some fields. I would like to add all values from...