@mlarchet Thanks. I'll try that out.
Type: Posts; User: geekinfo; Keyword(s):
@mlarchet Thanks. I'll try that out.
Is there a way to load multiple message bundles (per locale) in Spring MVC? I'm looking at loading "messages.properties", "errors.properties", "menus.properties", etc., for every locale (en_US,...
A thousand apologies. Missed including the error.jsp in the main page. duh!
I've a multi-action controller which has a LIST method (for displaying a table of entries w/ URLs) & an UPDATE method (for capturing data from a form & pushing to the DB). The URLs in the LIST get...
Thank you both for your suggestions.
@Rober2D2
Would you know if by using <form:errors/> tag one can manage the placement of the actual error text (along w/ some CSS) anywhere on the page, or...
Hi,
I have a simple login form which captures a uname/passwd for authentication. No Spring Security being used (yet). The problem is when the authentication fails, an exception is raised which is...
Thanks Sami. I'll give it a shot. But is there something we can do by means of configuration to achive this?
I'm looking to map URIs to file names that do not match the URI name. Example:
need to map /login.app to an actual page like /WEB-INF/pages/loginForm.jsp
Note that the URI name is login and...
Thanks again. Got this working. Instead of a bean id, I provided a bean name="<URI>" & it works. Something like-
<bean name="/login.app"...
Thanks a lot for the update. Not to be picky, but I assume this is what you meant:
bean id="aboutController" - I suppose any name should be fine
property name="viewName" value="<actual view page...
I'm a new to Spring MVC & I'm trying to figure a way to forward a request URI to a JSP. This is somewhat an equivalent of...
<action path="/flush"
...