A very usefull info. Thanks a lot shiva.forums!
Type: Posts; User: paul_phoenix; Keyword(s):
A very usefull info. Thanks a lot shiva.forums!
I've added the following validation.xml configuration file (extracted from the Hibernate Validator reference guide):
<validation-config...
I'd like to use the Hibernate Validator tool (based on JSR-303) in my Spring Portlet application by @Valid annotation, as is shown in this example:...
I think you're trying to get a model Object (called "user") which has not been previously attached to.
You have to add it to the model just before of redirecting to the view, and to get it in the...
1.You must add an SignUpUserModel instance to your Model before redirecting to the first view of your form
2.Supress the "enctype" property form your form and add a "modelAttribute" instead with the...
I've read that @DateTimeFormat is avaiable in Spring MVC, but I'm working with Spring Portlets. Is it avaiable for this case too? How I have to proceed? must I include <mvc:annotation-driven/> in my...
You must annotate your Controller's methods with @ActionMapping/@RenderMapping tags in the way it follows
@RequestMapping(value="VIEW")
@Controller(value="myController")
public class...
I'm newbie too... that's which I have in my portlet.xml file:
<portlet>
<portlet-name>myPortlet</portlet-name>...
I'm in the same scenario as you. Did you solve it?
I have to navigate from a portlet on page A to the same portlet (different portlet instance), or another portlet on page B.
Thanks a lot
auto-responding one of my questions:
Extracted from Building Portlet Applications (WebXtrass)
So, it seems to be possible to define several @Controller and redirect from the Dispatcher to...
I have a lot of questions about Portlets, Controllers, Annotations in Spring 3... I hope someone could give me a hand.
I know this thread is some old-fashionable so I was wondering if there are...