Tagged Questions
Spring Security (formerly known as Acegi Security) is the Spring Framework's Web application security solution. Mainly used to protect web applications (servlets), it can be used for portlets, user interfaces, and stand-alone applications.
60
votes
11answers
45k views
When using Spring Security, what is the proper way to obtain current username (i.e. SecurityContext) information in a bean?
I have a Spring MVC web app which uses Spring Security. I want to know the username of the currently logged in user. The code snippet below is what I'm doing. My question is, is this the accepted ...
39
votes
2answers
29k views
Spring 3.0 - Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/security]
Any ideas what could be the cause of this?
Unable to locate Spring
NamespaceHandler for XML schema
namespace
[http://www.springframework.org/schema/security]
...
30
votes
2answers
4k views
Shiro vs. SpringSecurity
I have currently evaluating Java based security frameworks, I am a Spring 3.0 user so it seemed that SpringSecurity would be the right Choice, but Spring security seems to suffer from excessive ...
21
votes
5answers
12k views
Programmatic use of Spring Security
I am using Wicket with the Wicket Auth Project for my presentation layer and I have therefore integrated it with Spring Security. This is the method which is called by Wicket for authentication for ...
21
votes
6answers
13k views
Unit testing with Spring Security
My company has been evaluating Spring MVC to determine if we should use it in one of our next projects. So far I love what I've seen, and right now I'm taking a look at the Spring Security module to ...
19
votes
4answers
700 views
Is there a Spring Security OpenId Registration like stackoverflow?
I cannot find a complete example anywhere of a Spring Security Web App with Open Id registration similar to stackoverflows.
I would say I'm pretty techy guy but I find Spring Security extremely ...
14
votes
3answers
14k views
Creating a custom authentication with Acegi/Spring Security
I'm having trouble discovering exactly what I need to implement in order to use a custom authentication method with my web application using Spring Security. I have a Grails application with the ...
13
votes
4answers
863 views
What is the meaning of Subject vs. User vs. Principal in a Security Context?
In the context of security frameworks a few terms commonly occur Subject, User, Principal I have not been able to find a clear definition of the difference between Subject and User, Subject and ...
11
votes
2answers
182 views
How or when to follow redirected OpenIDs?
I'm currently implementing OpenID authentication for a website. During testing, I've noticed that Google accepts different versions of claimed Google Profile IDs, e.g.:
...
11
votes
4answers
5k views
Spring login form example
I tried searching in Google, but I could not find any good examples where a username and password are checked with a database for authentication purposes.
In further simple words, how can I create a ...
11
votes
1answer
19k views
Spring Security 3 database authentication with Hibernate
I need to authenticate users from database, Spring Security documents don't tell how to authenticate with hibernate. Is that possible and how can I do that?
10
votes
3answers
3k views
Reverse AJAX (Comet) and Spring MVC vs. Scala/LIFT?
There is a demo by IBM that shows how easy Reverse AJAX can be used with DWR 2. On the other hand, Scala/LIFT comes with built-in Reverse AJAX capability.
Question: Any experience if this works ...
10
votes
7answers
7k views
How to check “hasRole” in Java Code with Spring Security?
How to check user authority or permission in Java Code ? For example - I want to show or hide button for user depending on role. There are annotations like:
@PreAuthorize("hasRole('ROLE_USER')")
...
10
votes
4answers
4k views
How to implement login page using Spring Security so that it works with Spring web flow?
I have a web application using Spring 2.5.6 and Spring Security 2.0.4. I have implemented a working login page, which authenticates the user against a web service. The authentication is done by ...
9
votes
3answers
527 views
High level Java security framework
What security framework do you use in your Java projects?
I used Spring Security and Apache Shiro and they both look immature.
Spring Security flaws:
no native support for permissions;
no ability ...
9
votes
1answer
2k views
Trying to protect resources with OAuth in Spring MVC
We already have REST web services written in Java on Spring MVC and I have been trying to protect them.
The OAuth server is implemented in another website which handles the logging in and creation of ...
9
votes
4answers
3k views
How to integrate Spring Security and GWT?
I'm trying to integrate Spring Security and GWT. I'm also using gwt-incubator-security. I configured everything as it was described on their wiki pages.
I managed to get security working by using ...
9
votes
3answers
12k views
how to display custom error message in jsp for spring security auth exception
I want to display custom error message in jsp for spring security authentication exceptions.
For wrong username or password,
spring displays : Bad credentials
what I need : Username/Password ...
9
votes
6answers
7k views
spring not enforcing method security annotations
I'm some what lost as to why spring isn't enforcing the @Secured("ROLE_USER") on my service interface. My controllers are established using annotations.
An example of my service Interface
public ...
8
votes
1answer
2k views
Get UserDetails object from Security Context in Spring MVC controller
I'm using Spring Security 3 and Spring MVC 3.05.
I would like to print username of currently logged in user,how can I fetch UserDetails in my Controller?
@RequestMapping(value="/index.html", ...
8
votes
4answers
235 views
Best way for a Spring MVC web app to detect a brute force attack?
Are there any features specifically in Spring 3.0 MVC that would help implementing detection of a brute force attack on the authentication/login page of a web app?
8
votes
1answer
1k views
What's the difference between @Secured and @PreAuthorize in spring secu 3?
It's not clear for me what is the difference in spring security between :
@PreAuthorize("hasRole('ROLE_USER')")
public void create(Contact contact)
And
@Secured("ROLE_USER")
public void ...
8
votes
1answer
3k views
Can Spring Security use @PreAuthorize on Spring controllers methods?
Can Spring Security use @PreAuthorize on Spring controllers methods?
8
votes
4answers
9k views
Is there any Spring-Security Tutorial like Spring step-by-step?
I am new in Spring, I have go though spring step-by-step, it seems very helpful for the beginners. But i did not find something like this about spring security, Can anyone provide me with ...
8
votes
4answers
8k views
Spring security - how to mention both form based and basic authentication
Is it possible to mention both form-based and basic authentication in Spring security using namespace configuration without overriding other ? So that the appliciation could serve both browser based ...
8
votes
4answers
9k views
What are some good sample applications using Spring and Hibernate?
I need a quick jump start for using Spring and Hibernate together and I was looking for some sample code to modify and extend. Bonus points for Struts2 and Spring Security integration.
7
votes
5answers
906 views
Get username of client who connected to web server
Here's the scenario. I am code running on a web server in an AD domain. Some client has connected to me. How do I get that client's username, without having the client fill out a form in their ...
7
votes
4answers
1k views
Spring security issue with 404 error?
greetings all, i am using spring security 3.0.2, urlRewrite 3.1.0
, and i have a problem with spring security that i have a rule that all the pages in the app requires authentication except for some ...
7
votes
3answers
1k views
Two realms in same application with Spring Security?
We're building a web application that is available to both authenticated and anonymous users. If you decide not to register/login you only have a limited set of features. User authentication is done ...
7
votes
4answers
2k views
Can i use Spring on GAE?
Can i use Spring Webflow/MVC and Spring Security and Hibernate on Google App Engine?
Is there a list/summary of java frameworks that can be used on the GAE?
7
votes
1answer
2k views
Spring security accessing principal
When using spring security, specifically with @notation; what is the proper way to access the principal in a Controller? Lets say the following is my controller, but I would like to access the ...
7
votes
7answers
6k views
How can I use Spring Security without sessions?
I am building a web application with Spring Security that will live on Amazon EC2 and use Amazon's Elastic Load Balancers. Unfortunately, ELB does not support sticky sessions, so I need to ensure my ...
7
votes
1answer
15k views
How do I get the Session Object in Spring?
I am relatively new to Spring and Spring security.
I was attempting to write a program where I needed to authenticate a user at the server end using Spring security,
I came up with the following:
...
7
votes
6answers
11k views
spring-security: authorization without authentication
I'm trying to integrate Spring Security in my web application. It seems pretty easy to do as long as you integrate the whole process of authentication and authorization.
However, both authentication ...
7
votes
4answers
4k views
Integrating Captcha with Spring Security
What is appropriate way to integrate SpringSecurity with Capcha ?
I have following use case :
When user will tries to login, if we he failed to login N times, captcha will be displayed, so ...
6
votes
1answer
313 views
Spring 3.x configuration for multiple login pages
I'm using Spring 3.1 for authentication purpose.
My requirement:
Two different login pages. One for Customer and other for Employee.
Each after successful authentication, will be forwarded to ...
6
votes
2answers
370 views
Catching Remember-Me Authentication Events in Spring Security
I'm developing an application in which I need to catch and respond to Authentication events to take appropriate action. Currently, I'm catching just fine the AuthenticationSuccessEvent Spring throws ...
6
votes
1answer
302 views
Special Login with Spring Security
The company where i am currently working has a special kind of authentication process.
Indeed, several users can have the same login and password. So, to identify them, in a second time, the user ...
6
votes
0answers
378 views
Using Spring Security on a JAX-RS bundle in Karaf
I have an OSGi bundle that uses JAX-RS to handle some REST services. This bundle is running in Karaf with Apache CXF. I need to apply basic http authentication to certain path/method combinations. ...
6
votes
4answers
6k views
Configuring Spring Security 3.x to have multiple entry points
I have been using Spring Security 3.x for handling user authentication for my projects, and so far, it has worked flawlessly.
I recently received the requirements for a new project. In this project, ...
6
votes
1answer
428 views
How can I use Spring Security with a cluster with session replication to fail-over an authenticated user?
If I am using Spring Security and application server clustering and have the http session being replicated, is it possible to have an authenticated user automatically fail-over to another node in the ...
6
votes
1answer
794 views
Spring Security, Spring MVC and Login Sessions
I have my Spring MVC & Spring Security up and running as suggested by Spring's own reference application "petclinic". Everything's fine except that the login does not persist a browser restart.
...
6
votes
2answers
824 views
OpenId authentication and automatic registration with Spring Security 3.0.2
I'm implementing an app using spring security 3.0.2 with OpenId login and registration.
I can login succesfully, but if the user isn't registered i want to do:
1) Get some OpenId attributes like ...
6
votes
2answers
2k views
Spring Security 3- How to customize username/password parameters?
How do you customize the UsernamePasswordAuthenticationFilter usernameParameter (j_username) and passwordParameter (j_password) properties when using the <http ... /> Spring Security 3 ...
6
votes
4answers
4k views
How can I prevent spring-security from appending ;jsessionid=XXX to login redirects?
When an unauthenticated client requests a URL that requires a non-anonymous access level as defined in security-config.xml, spring security sends an HTTP redirect to our login page (e.g. /login). ...
6
votes
2answers
427 views
Is there any Spring-Security-based production-ready security package for Java?
I'm designing the security subsystem for a new product. The system requires the following:
Complex user/group/permission model, both service-level and domain-level (ACL)
Administration UI for the ...
6
votes
3answers
9k views
Spring - Security : how are login username and password bound to the authentication-provider?
I am new to spring and spring security,
I have understood how beans are created and referenced in the xml files,
I need to provide security using spring into my application.
I included a custom ...
6
votes
6answers
2k views
How to immediately enable the authority after update user authority in spring security?
I'm using spring-security framework.When I update the permissions,It does not take effect immediately.I have to quit the current user(means logout), and then re-visit(means login) will be to update ...
5
votes
1answer
36 views
Order of Spring @Transactional and Spring Security @PreAuthorize
So I have something like the following:
public interface MyService {
@PreAuthorize("hasPermission(T(Name).OBJ, T(Action).GET)")
MyObj getObj(String id);
}
@Service
public class ...
5
votes
2answers
195 views
Log user in with remember-me functionality in Spring 3.1
I currently log users in programmatically (like when they login through Facebook or other means than using my login form) with:
SecurityContextHolder.getContext().setAuthentication(
new ...