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.
26
votes
3answers
7k views
Best practice for getting active user's UserDetails?
In my controllers, when I need the active (logged in) user, I am doing the following to get my UserDetails implementation:
User activeUser = ...
113
votes
12answers
77k 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 ...
38
votes
1answer
44k 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?
21
votes
4answers
19k 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, ...
4
votes
3answers
6k views
How to dynamically decide <intercept-url> access attribute value in Spring Security?
In Spring Security we use the intercept-url tag to define the access for URLs as below:
<intercept-url pattern="/**" access="ROLE_ADMIN" />
<intercept-url pattern="/student" ...
16
votes
3answers
5k views
How to create custom methods for use in spring security expression language annotations
I would like to create a class that adds custom methods for use in spring security expression language for method-based authorization via annotations.
For example, I would like to create a custom ...
3
votes
5answers
5k views
Spring Security:password encoding in DB and in applicationConext
Have config (applicationContext-security.xml):
<authentication-manager alias="authenticationManager">
<authentication-provider>
<password-encoder hash="sha"/>
...
3
votes
4answers
3k views
Is it possible to invalidate a spring security session?
I'm using Tomcat 6.0.32, Spring Security 3.0.5
In my web app some users have the ability to change other users privileges. When this happens I would like to invalidate any session for the user whose ...
17
votes
4answers
21k 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 ...
22
votes
9answers
22k 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')")
...
20
votes
3answers
5k views
What's the difference between @Secured and @PreAuthorize in spring security 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 ...
2
votes
2answers
5k views
User Granted Authorities are always : ROLE_ANONYMOUS?
I am using the following method to make a programmatic login after registration
private void autoLogin(User user,
HttpServletRequest request)
{
GrantedAuthority[] grantedAuthorities ...
4
votes
4answers
3k views
Logging user activity in web app
I'd like to be able to log user activities in a web app. I'm currently using log4j which works well for logging errors etc, but I'm unsure what the best approach is to log the user, executed servlet ...
65
votes
2answers
14k 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 ...
8
votes
4answers
23k views
How do I use custom roles/authorities in Spring Security?
While migrating a legacy application to spring security I got the following exception:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name '_filterChainProxy': ...
18
votes
3answers
8k views
Can Spring Security use @PreAuthorize on Spring controllers methods?
Can Spring Security use @PreAuthorize on Spring controllers methods?
4
votes
1answer
3k views
determine target url based on roles in spring security 3.1
In spring security 3.0, we are having AuthenticationProcessingFilter class, in which we were using determineTargetUrl() method, which returned the url based on different roles.
Now, we are moving to ...
3
votes
4answers
2k views
Spring custom JSF login page, always “Bad credentials”
I'm trying to get a JSF login page to work with Spring security. I've looked around for numerous examples but none works. Every time I try to log in using the JSF page I get a "Bad credentials" ...
18
votes
3answers
37k 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
1answer
4k views
how to get redirected to a method at login/logout before target-url called in spring-security, spring mvc
I am trying to record current time of Login(in a method or object) once the Login is successful and assign LastLogin time to current login time at logout. I am using spring security for login, logout. ...
6
votes
4answers
9k views
Spring Security Custom Filter (Change Password)
I'm using Spring Security for securing HTTP requests to a website. The primary usage is for securing pages such that the user is redirected to the login page when trying to access those pages.
...
5
votes
5answers
15k views
Looking for a Simple Spring security example
I am new to spring-security (Java) and I am looking for a good and !simple! example of:
How to use spring security for login and logout
Make sure that the session exists on every page and if not ...
7
votes
3answers
3k views
Spring Expression Language and Spring Security 3: accessing bean reference in @PreAuthorize
I'm trying to access a bean reference in a @PreAuthorize annotation as follows:
@PreAuthorize("@testBean.getTestValue()")
public String testSpEL() {
....
}
I have a test bean configured as ...
7
votes
2answers
8k views
Spring Security: How to get the initial target url
I am using the spring security to restricted urls. I am trying to provide signup and login page, on the same page.
On login spring security transfers to the restricted page. However i am trying to ...
4
votes
2answers
3k views
how to pass an additional parameter with spring security login page
i am trying to set the database name as the request input parameter from the spring security login page. At present i am only getting username thats been retrieved using springsecurity ...
4
votes
2answers
3k views
Make spring security add the return to url in the query string for the login page
Earlier I asked if it was possible to get the original request url in the form login page in Spring Security 2. Turns out that actually won't help me, what I need is for the redirect to the form-login ...
18
votes
5answers
17k 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 ...
14
votes
6answers
19k 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 ...
11
votes
4answers
13k 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 ...
20
votes
3answers
21k 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 ...
6
votes
4answers
9k views
How to process a form login using Spring Security / Spring MVC
Simple question, I just need a pointer in the right direction:
I have a simple Spring MVC/Spring Security webapp. Initially I set up Spring Security so that the default login page shows and ...
17
votes
5answers
16k views
How to manually set an authenticated user in Spring Security / SpringMVC
After a new user submits a 'New account' form, I want to manually log that user in so they don't have to login on the subsequent page.
The normal form login page going through the spring security ...
7
votes
1answer
9k views
Integrate Single Sign On using Spring Security
I'm using Spring Security and I would like to use another site as one of my authentication providers. I have a basic form based login on my site. I want to have a link on my site that takes the ...
14
votes
6answers
16k views
Spring: Security how to exclude certain resources
I have the following definition...
<bean id="fsi" class="org.springframework.security.intercept.web.FilterSecurityInterceptor">
<property name="authenticationManager" ...
4
votes
5answers
7k views
spring security integrate with facebook connect
may i know is there any tutorials/guideliness on spring security integrate with facebook connect
7
votes
2answers
4k views
How to use Spring security with jpa?
I am new to Spring.
We are using spring security feature.
Database connectivity: eclipselink implementation of JPA.
Database: MySql
While using spring security, Configuration of authentication ...
4
votes
2answers
14k views
Spring Security HTTP Basic Authentication
I am trying to do a really simple basic authentication with Spring Security. I have configured properly the namespace, and there are no Exceptions in the server. In my "servlet.xml" I have got the ...
3
votes
1answer
7k views
Acegi Security: How do i add another GrantedAuthority to Authentication to anonymous user
i give users special URL with access key in it. users accessing the public page via this special url should be able to see some additional data as compared to simple anonymous user.
i want to give ...
5
votes
2answers
2k views
@Secured does not work in controller, but intercept-url seems to be working fine
It doesn't look like @Secured on methods in my @Controller are being read. When security filtering based on sec:intercept-url is being used, this seems to be working just fine. The following code ...
3
votes
4answers
1k views
single signon + spring
Can anybody tell me how to implement single signon in my spring application.(Tomcat or Jboss server)
share me any documentation or link to bring this feature in my spring app.
I am using spring ...
3
votes
4answers
9k views
Spring Security Authentication using RestTemplate
I have 2 spring web apps that provide 2 separate set of services. Web App 1 has Spring Security implemented using a user-based authentication.
Now, Web App 2 needs to access the service of Web App ...
5
votes
3answers
4k views
Programmatically login in a user using spring security
The opposite of this.
In my app I have register new user screen, which posts to a controller which creates a new user within db (and does a few obvious checks).I then want this new user to be ...
2
votes
2answers
319 views
spring security:intercept-url pattern access="#id == 1
i have project were iam spring security 3.1.3 and mvc 3.2
i want too allow a url wehen in the userid in the path is matching the principal userid
<security:intercept-url ...
2
votes
1answer
485 views
AccessControlException when using Spring Security with OpenID
I try to implement Spring Security with OpenID in Google App Engine but I am getting a
'java.security.AccessControlException: access denied' for the
RequestURI /j_spring_openid_security_chec
It is ...
0
votes
3answers
3k views
Spring Security not processing pre/post annotations
I'm trying to get pre/post annotations working with a web application, but for some reason nothing is happening with spring-security.
web.xml:
<context-param>
...
2
votes
1answer
5k views
“The matching wildcard is strict, but no declaration can be found for element 'http'” Error
I am trying to configure NTLM authentication, but receive error:
cvc-complex-type.2.4.c: The matching wildcard is strict, but no
declaration can be found for element 'http'.
I read a lot of ...
1
vote
2answers
5k views
Spring Security - multiple authentication-providers
My web app has multiple authentication managers (one for API one for WEB access). The api should have a basic auth service only - configured via the spring security markup as seen below:
<?xml ...
1
vote
2answers
2k views
use existing domain classes with Spring Security plugin
I'm trying to convert a Stripes web app to Grails. The Stripes app uses Spring Security, but I would like the Grails app to use the Spring Security Grails plugin.
The app already has User and Role ...
0
votes
1answer
260 views
How to validate a login inside a bean using spring security?
So I'm learning Spring and I'm using JSF with PrimeFaces.
My question:
I would like to know how (if possible) to authenticate and authorize user credentials using a boolean function in a bean, like ...
0
votes
1answer
387 views
Can i use one Login page to redirect different page with Spring 3.0 Security..? [duplicate]
Possible Duplicate:
Setting custom Post-Login Destinations based on user ROLES using spring security
I am doing my project in Java using Spring. I am using spring security in my project.
...