Spring Security (formerly known as Acegi Security) is the Spring Framework's application security solution. Spring security can be used to secure URLs and method invocations. It is widely used to secure standalone web applications, portlets and increasingly REST applications.

learn more… | top users | synonyms (1)

0
votes
3answers
105 views
+50

url context changing between local server and tomcat

Hi I'm working on a application that has a weird problem. The application works fine in both local tomcat and remote tomcat deployments, but on certain modules the url context changes. Here's one of ...
2
votes
1answer
93 views
+100

Grails spring security LDAP DirContextOperations is null

So I have an application that works perfectly on my desktop, and also works perfectly when deployed to tomcat on a windows machine. When I attempt to use this application while deployed on the same ...
6
votes
1answer
107 views
+100

Tile does not work properly with OGNL expressions

I am trying to use OGNL in my tile but it considers the expression as a string ( whatever I use it counts as a string). How should I change it in a way to count the expression as name of a page not ...
4
votes
2answers
433 views
+200

An Authentication object was not found in the SecurityContext - Spring 3.2.2

I'm trying to invoke a protected method from a class that implements the ApplicationListener<AuthenticationSuccessEvent> interface on successful login (Spring 3.2.2 and Spring Security 3.2.0 ...