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
2answers
29 views

Spring custom user details service null pointer exception

I've written a Spring MVC application with a custom user details service. @Service("userDetailsService") public class CustomUserDetailsService implements UserDetailsService{ @Autowired ...
0
votes
0answers
12 views

Can't access authentication-failure-url in Spring Security

I am creating a mobile application with JQuery and Spring security. In my Spring security context file I have the following piece of code: <intercept-url pattern="/mobile.html" ...
1
vote
3answers
83 views

How to use one transaction per request Spring + Hibernate + Spring Security + JSF

I'm working in a web app using JSF 2.1 + Hibernate 4.1.7 + Spring 3.2.1 + Spring Security + SQLServer2012. Everything works fine i.e. CRUD operations. But some methods need to work with 2 or more ...
6
votes
6answers
6k views

Spring 3 Security: AccessDeniedHandler is not being invoked

I have a spring 3 application with the configurations given below. When any user tries to access a page and he/she isn't logged in, I get an Access is Denied exception with an ugly stack trace. How do ...
1
vote
1answer
20 views

How to have a custom cookie name in spring security

I have two applications A and B which are running on the same server, with different ports. As cookies are not port-specific, these two applications are using the same cookie JSESSIONID. When I log in ...
1
vote
1answer
43 views

Do applications with spring security share SecurityContextHolder among them

I have two different applications, say A and . Both are using Spring Security with the same configuration. Here is my situation: I log into my A application. Everything works fine. But when I log ...
0
votes
2answers
480 views

Grails Spring Security UI Requestmap Configuration

Im currently working on a Grails application and use the Spring Security framework with the Core and UI Plugins. Nearly everything is working fine: User creation, editing, deleting, etc. The only ...
1
vote
0answers
21 views

Handling complex authorization in spring security

I have a spring MVC web app using pre- and post- authorization method annotations. I have a particular method in one of my services that needs to apply much more complex authorization logic. I ...
0
votes
0answers
41 views

Invoking a protected method from a method in JSF managed bean which is annotated by @PostConstruct

In a JSF managed bean a method annotated with @PostConstruct - (javax.annotation.PostConstruct) is invoked as soon as the JSF managed bean is loaded i.e after the constructor of the managed bean ...
2
votes
2answers
187 views

Using file extension content negotiation with spring security plugin?

I'm trying to use the latest spring security plugin for grails, but I've hit a little bump. I have a controller with this method: @Secured(['ROLE_USER']) def query = { } When I hit ...
0
votes
0answers
9 views

Wss4jSecurityInterceptor giving exceception

I have developed one web service which is working fine with soup-ui but when when i am calling it with client it is giving me Null Pointer exception. If I remove security interceptor from both end it ...
0
votes
1answer
29 views

Grails spring-security static rules for rest resource seems not working properly

I have an Grails (2.0.4) application using Spring Security plugin (version 1.2.7.3) and the secured annotation approach (the default one, more here). Now, I have these URLs in UrlMapping.groovy with ...
6
votes
1answer
109 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 ...
1
vote
1answer
27 views

Spring security 3 http-basic authentication-success-handler

H i'm using spring security for form-login i have <http auto-config="true"> <intercept-url pattern="/pages/**" access="ROLE_USER" /> <form-login ...
0
votes
1answer
16 views

Spring Security ApplicationListener<AuthenticationSuccessEvent>

hi i've implemented an ApplicationListener<AuthenticationSuccessEvent> when this event occurs, i want to set a cookie to the ServletResponse. How can i access it? Should i use a Filter? But ...
0
votes
0answers
20 views

Why is Spring Security HTTP BASIC redirecting to wrong URL?

I have a simple Spring Security (3.x) configuration to require HTTP BASIC auth for a subset of resources in my application. <http auto-config="true" use-expressions="true"> ...
4
votes
2answers
447 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 ...
0
votes
1answer
31 views

How can I do Spring Security authentication from within a JSF form

I created a simple JSF login page, and I'm trying to integrate it with spring security. Here is the form element from login.xhtml <h:form> <h:outputLabel value="User Id:" ...
0
votes
1answer
22 views

parse memberOf attribute to get group in spring security3

I am using spring security 3.1.3 for authentication via LDAP, code is working fine.Now, I want to get group of authenticated user. I've developed my custom LdapAuthoritiesPopulator in my ...
1
vote
3answers
21 views

Is my approach to giving access to users correct?

I am applying spring security on my jsp page, I need to show different parts of the page to users with different roles all the roles are as following. All authenticated users >> Edit and Add New ...
0
votes
0answers
18 views

The app don´t work well with spring-security

I'm begging with the framework spring and spring-security. To learn, I´m developing an app. Up to now I have developped the app without spring-security, for validate to the user by way a login´s form. ...
0
votes
2answers
53 views

@EJB injection in a Custom UserdetailsService (implementing Spring Security UserDetailsService)

I'm using glassfish 3.1.2 in a JPA/EJB 3/JSF 2/Spring Security 3 in my application. I want to write a custom UserdetailsService like this one: import org.apache.log4j.Logger; import ...
0
votes
2answers
36 views

How to force spring-security to redirect unauthorized users to a specific page?

My application perfectly submits a form to server and shows the response message received from server such as "form is submitted" or "sorry, something went wrong!" However, I need to allow all users ...
0
votes
0answers
8 views

what are the changes from acegijsf to springsecurity for JSF 2.0

I am changing my application in order to use spring security and removing acegijsf I have changed as per this Spring Source Facelets Tag and Spring security I am using spring 3.0.5 version I am ...
1
vote
2answers
42 views

Spring MVC special login interceptor

I have this small web application, for which I am using Spring MVC 3.0 The way I have implemented the login functionality is via normal Handler Interceptor. i.e. when the request comes in the Session ...
0
votes
3answers
111 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 ...
1
vote
0answers
39 views

Grails - Spring Security - authentication error

I have a strange problem with an authentication of users in Grails using Spring Security plugin: When the user logs into his account, he sees credentials of completely different user (I print out ...
1
vote
2answers
45 views

Additional field in login using Grails Spring Security plugin

My question is similar to this one how to pass an additional parameter with spring security login page though it applies to Grails Spring Security plugin. If I have to support an additional field in ...
0
votes
0answers
18 views

Concurrency Control configurarion using Spring Security in Wicket 6.7.0

I followed the below example to integrated the spring security in wicket. https://github.com/thombergs/wicket-spring-security-example. I changed spring-security.xml file to configure the concurrency ...
1
vote
1answer
53 views

How to allow User to login only once at a time?

I have used Spring Security Core plugin in my grails application, and I want to add the functionality: When a user is already logged in, user will not be allowed to use same userName and password to ...
3
votes
5answers
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 ...
4
votes
2answers
960 views

How can I allow a user override with Spring Security?

In my Spring MVC web application, there are certain areas accessible only to users with sufficient privileges. Rather than just have a "access denied" message, I need to be able to allow users to log ...
0
votes
2answers
36 views

how to block the unauthorized user using Spring Security?

I'm new to SpringSecurity. This my Spring-security-Context.xml file <?xml version="1.0" encoding="UTF-8"?> <beans:beans xmlns="http://www.springframework.org/schema/security" ...
0
votes
1answer
41 views

Instructions needed to integrate spring-security-ui into my grails application

First things first, I have already started going through these URLs to install the spring-security-ui to my grails application. Spring Security UI Plugin and ... Customizing Grails Spring Security ...
2
votes
1answer
53 views

org.springframework.security.authentication.AuthenticationCredentialsNotFoundException: An Authentication object was not found in the SecurityContext

I have a web application in the following environment. Spring 3.2.2 Spring Security 3.2.0 JPA 2.0 JSF 2.1.9 I have added the following libraries related to Spring security to the classpath. ...
6
votes
3answers
8k views

BeanFactory not initialized or already closed - call 'refresh' before accessing beans

I'm trying to add spring security to a regular JSF application. After repeated tries and I'm failing with the following error on tomcat bring-up. Here is the entire stack trace. Any help is ...
1
vote
0answers
23 views

javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials] while authenticating via LDAP in spring security3

I am trying to authenticating user via LDAP and authorizing via Database.LDAP directory contains user with corresponding group and I want to fetch this group at the time of successful authentication ...
0
votes
0answers
23 views

Spring security annotations work perfectly in the external Chrome browser but not in the integrated eclipse STS navigator

It is not a problem to continue coding, but I'm worry about the security. I don't know which could be the problem, or in which part could it be. This the whole code: ...
2
votes
1answer
96 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 ...
0
votes
0answers
18 views

Spring Security Remember Me Redirect after RequireFully Authorized

All, I am trying to implement Remember Me functionality I have two protected urls. /operation/fully (user must be fully authenticated no remember me allowed) and /operation/authenticated ...
0
votes
2answers
23 views

Grails findAllByRole() error

I am trying to send email to all users with admin role when list() action has been called. Inside my list method I put the following code: def admins = User.findAllByRole("ROLE_ADMIN") ...
0
votes
3answers
322 views

Spring security login process not working

I am using spring security plugin for logging in user. I am using both AJAX as well as Normal login methods..The code seemed to work fine till it was running on the embedded server but when I pushed ...
0
votes
1answer
21 views

Spring Security with LDAP and Database roles

In our new insurance project. I am trying to implement spring security with Ldap Active Directory. I want to just check username/password against AD, once user found in AD, I want to authorize him ...
0
votes
0answers
12 views

Spring-Security x509 X509PrincipalExtractor

I am trying to get a Spring security configuration working but am have some problems and I am not sure what to do. I have successfully used x509 with the following configuration <security:http ...
1
vote
1answer
103 views

example booking faces intercept-url pattern=“/secure”

I have an question relate with the example booking-faces, with the parameter in spring security intercept-url pattern="/secure" what's is mapping?, where is /secure configured. thnks.
0
votes
1answer
42 views

How to force Tomcat to delete expired Sessions when loggin User closes his Browser?

I implemented a SessionListener to track the open sessions of my webserver I set in my web.xml: <listener> <listener-class>demo.MyHttpSessionListener</listener-class> ...
0
votes
1answer
5k views

BeanFactory not initialized or already closed

Sorry for my English. I use Eclipse 3.7, that runs web-app (spring-mvc + spring-secirity) on tomcat6, but happens next error: java.lang.IllegalStateException: BeanFactory not initialized or already ...
0
votes
0answers
45 views
0
votes
1answer
34 views

Spring security 3 intercept-url pattern with index

I am trying to use Spring Security v3.2 for a project. At the moment I always use a coldfusion file that calls other files to build up the view. So all my urls go trough index.cfm?blablah. Now I am ...
0
votes
3answers
68 views

Autowire doesnt work in custom UserDetailsService

In my custom user details service, my variable "aUserService" doesnt auto wire even already annotated. tried a lot method, but still failed and the value is null. Acutally i follow from krams ...

1 2 3 4 5 81