I added the line:
// Use initializer
initializer.setPropertyEditorRegistrar(new StringTrimmerRegistrar());
and an private class:
private class StringTrimmerRegistrar implements...
Type: Posts; User: s_gilou; Keyword(s):
I added the line:
// Use initializer
initializer.setPropertyEditorRegistrar(new StringTrimmerRegistrar());
and an private class:
private class StringTrimmerRegistrar implements...
Hi,
I think this might be a bug.
I'm using Spring 3.0.5.
I have a Spring form with attachements so I use enctype="multipart/form-data" to retrieve the attachements.
However, then, a...
Hi, I still don't understand one thing about date formatting.
I'm looking at the petclinic sample with Spring 3:
When you edit a pet, the WEB-INF/jsp/pets/form.jsp page displays very well the...
Hi all,
I'm new to Spring Actionscript (but not to Spring).
I'm trying to use a applicationContext.xml file in a Flex application but I get a SecurityError exception because of the access to the...
Hello,
I want to combine a SQL transaction with a ldap transaction.
I try to use a ContextSourceAndDataSourceTransactionManager transaction manager as it is documented in Spring-Ldap.
But I'm...
It's me again
After some study, I think I will implement it using an HandlerInterceptor in Spring MVC.
So I would use:
- Acegi for Authentication and predefined role based rules
- Spring MVC...
It's me again,
just for people intersted in this subject there is an intersting post:
http://forum.springframework.org/showthread.php?t=36999
Hi,
I have an application using Spring MVC and Acegi where I want my users to:
- be forced to authenticate --> OK with Acegi filters
- for some users (depending on some values in the database),...
Thanks Jandrla,
1. So if I wanted to retrieve my custom User class from the session in all my JSP pages not using the Acegi taglib, how would I do that ? What key does it use to store it in the...
Thanks again
And:
- Can I use the jstl core taglib if I wanted to use "foreach" and "if" ? and if yes how?
Thanks
Gilles
Thank you very much for your answer.
Actually my user domain object is not an instance of the acegi User class
- What if my user has a Company object, can I do:
<authz:authentification...
Hi everyone,
I've read the documentation and I still don't have a clear understanding of the best way to do what I need.
Once a user is logged in the system, I want to be able to display all...