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.
0
votes
1answer
43 views
Spring Security 3.0: Method Security being ignored
I'm new to Spring Security and I'm having trouble getting Spring Method Security to work in my web application although (I believe) I've setup the web.xml, applicationContext.xml and ...
1
vote
2answers
2k views
Spring security not hitting default-target-url after successful authtication
I have implemented spring-security in my application, my spring-security.xml has following form-login tag.
<form-login login-page="/login.htm" default-target-url="/dashboard.htm"
...
0
votes
0answers
25 views
How to secured API for native IOS frontend
I'm trying to get a better understanding of how the whole API thing works. The API will be written with grails. The basic API is up and running, but there need to be some security, since specific ...
1
vote
1answer
218 views
Spring Security two web sites sharing same remember-me login
Has anyone tried to do this and gotten it to work? I have tried to set them up accessing the same database on the same server using the same remember-me key but it will not work. Is there something I ...
0
votes
0answers
43 views
OrientDB Record Level Security in Web Application
I'm using OrientDB 1.3 on a Web Application, and decided to give a go on the Record Level security feature for data authorization.
The thing is: As far as I know, Record Security needs the connection ...
9
votes
4answers
9k views
Redirect after login (Spring security on GAE)
I am having some troubles making my login redirect to the same place always. I have done something like this
<http auto-config="true" use-expressions="true" entry-point-ref="gaeEntryPoint" >
...
0
votes
1answer
29 views
springSecurityService and params to set in session
I'm trying to adapt the springSecurity plugin to my own need, so when a user authenticates, a key must be checked as valid for the User and then stored in the user's session (the user can have ...
0
votes
5answers
423 views
Securing Controller Actions by User in Grails
I am using the Grails security plugin on a project. I am using the annotations on controller actions to restrict access to certain classes of users such as 'ROLE_ADMIN' or 'ROLE_USER'.
(using this ...
0
votes
1answer
53 views
custom login page with spring security and JSF Pimefaces
I want to include a custom login page with spring security and JSF Pimefaces. My custom login page is designed with Primefaces.My problem is that the login page is not displayed with primefaces ...
0
votes
1answer
43 views
Understanding authentication providers in Spring security
I am trying to understand authentication providers in Spring (3.1) and I have a question to what is really happening here. I know that I use the namespace that gives easier access to functionality and ...
2
votes
2answers
4k views
Spring Security 3 Logout not working
I am new to spring security. I have created an example in spring security 3.
I am facing a problem. I am able to login successfully with the default login page, but when I logout, I am successfully ...
0
votes
1answer
36 views
When trying to unit-test authorizations with@PreAuthorize I get “No AuthenticationProvider found for UsernamePasswordAuthenticationToken”
First: my question seems like No AuthenticationProvider found for UsernamePasswordAuthenticationToken, but implementing the solution found there doesn't help me any further.
My app-context looks like ...
7
votes
4answers
7k views
Get Spring Security Principal in JSP EL expression
I am using Spring MVC and Spring Security version 3.0.6.RELEASE. What is the easiest way to get the user name in my JSP? Or even just whether or not the user is logged in? I can think of a couple ...
1
vote
2answers
442 views
show user full name and other fields in jsp header for authenticated user
what i would like to achieve is at the bottom of the header i would like to show a few fields regarding to the authenticated user,
the fields i would like to be able to get are the ID, Location and ...
1
vote
1answer
28 views
Using JdbcUserDetailsManager vs own UserDetailsService
I am learning about Spring Security and I don't understand completly if I should use JdbcUserDetailsManager or a custom implementation of UserDetailsService. I am using a database for storing users.
...
1
vote
1answer
421 views
Spring Security - custom passwordEncoder never called when authenticating
I'm trying to use Spring Security with a custom PasswordEncoder that use BCrypt. It seems that the PasswordEncoder isPasswordValid() method is never called when I'm trying to authenticate a user so it ...
4
votes
1answer
2k views
Spring 3.0 Security - Authorization with Authentication
I am new to Spring and my requirement is that I do not want to authenticate the user with username and password.
The user is authenticate is some other application and my app get the request with ...
0
votes
0answers
37 views
Error creating bean with name 'userDetailsService': Injection of autowired dependencies failed;
i'm using spring security and spring mvc to cretae a login interface using mongodb
but i have a error that i can't resolve it
anyone have the same problem can help me
GRAVE: Exception sending ...
0
votes
3answers
70 views
How can I get the user information using Spring Security with LDAP
Im using Spring 3.1.1 with Spring Security 3.2.0 with LDAP authencitation.
I have gotten it to a point that works fine and I can log in using my LDAP username and password, I can even display the ...
0
votes
1answer
45 views
Where does the Spring Security plugin in Grails check the user's password?
I have set up a Grails application that uses the Spring Security plugin. I used the defaults for the plugin setup.
I can't for the life of me figure out where in the canned code Spring Security ...
0
votes
3answers
6k views
Why is my (Spring Security) servlet filter getting called twice?
Any ideas about why doFilterHttp in my SpringSecurityFilter subclass is getting called twice on each request? I don't really know where to start looking. Feeling a little stumped.
I'm reverse ...
0
votes
0answers
29 views
always-use-default-target=“false” and default-target-url do not work with spring-social
always-use-default-target and always-use-default-target="false" works fine if the user logins with username and password
Both attributes seems to be ignored when using spring-social
When the user ...
0
votes
1answer
50 views
What does 'login-page=“/login.jsp” login-processing-url=“/login.do”' mean in Spring OAuth2 tonr?
I am working a Oauth 2 implementation project, below is what I found in the configuration file from Spring Oauth2 tonr sample project:
<http ...
0
votes
1answer
63 views
Spring Security 3.1 intercept url not intercepting any urls
I have Spring Security 3.1 wired up and authenticating a user when the directly access the Login page, but no redirect is happening when the user is not authenticated.
Below are my configuration ...
0
votes
0answers
44 views
Spring 3 security fails when site is accessed via domain url, works internally (ip). (When url jsession is disabled)
I'm currently writing a web application with spring 3 mvc and spring 3 security. Everything worked as expected locally, so it was time to put it online. First the login failed due to ';jsession=xxxxx' ...
0
votes
1answer
44 views
How to get authenticated user in spring-security-oauth
For my REST aplication I used Basic Authentication (sending user's password and login with every request). For some needs I obtain logged user using:
User loggedUser = (User) ...
2
votes
1answer
46 views
How to change login form to logout link once user is logged in?
I have a index.jsp page with a message and a login form which perfectly works, however when user is logged in I need it to stay on index.jsp page and just replace the login form with the logout link ...
3
votes
3answers
4k views
Multiple <http> elements in Spring security
Recently Spring Security has given the oportunity to configure several <http> elements. I'm trying to set a configuration for all the urls wich maps the pattern /foo/* and another for the rest. ...
1
vote
5answers
10k views
The matching wildcard is strict, but no declaration can be found for element 'fss:oauth'
I am trying to build a Java application that accesses data stored in Database.com using the Database.com Java SDK. I have followed the steps given at qucik start guide @ ...
0
votes
1answer
90 views
How to integrate an LDAP user with the PERSON table created by Spring Security in Grails?
We are creating a grails aplication where we want the user to log in using their Active Directory credentials. Additionally, we want to give the business owner of this application the ability to ...
1
vote
1answer
38 views
Can I configure Spring Security to prompt for domain name, along with user name and password
I am authenticating using LDAP, and everything works fine for users within a specific domain. But I'm having difficulty understanding how I can authenticate users that are under a second domain. My ...
0
votes
1answer
80 views
Spring security concurrent session is not working as desired
Instead of restricting one session per user,it is restricting one session for
whole application.
So if one user is logged in noone can login .
Here is my configuration
<session-management ...
0
votes
1answer
215 views
How Do I use Jasypt with springs autowire?
I have see some solutions for this without the autowire but I am trying to get it to work with with the auto wire. I have been trying this since last week but found no solutions that worked in my ...
0
votes
1answer
31 views
unable to integrate spring security in existing application
I am not able to find out my problem in spring security integration. I have spent 2-3 days already.So, please help me.
below is my web.xml file
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
0answers
30 views
spring security don't accept my table user
please haw can I configure my authentication-provider spring security ..to make him connect on my own table user
CREATE TABLE users
(
id serial NOT NULL,
username character ...
1
vote
1answer
74 views
Spring-security does not work properly
The application is supposed to only give access to ROLE_ADMIN users to /secret addresses but it does not give access to anyone (either authorized or non authorized ones), another problem is that even ...
-2
votes
0answers
55 views
Nothing happens while first time login in web application [closed]
I came across with strange behaviour in my web application
This problem produces only when deployed in apache tomcat and not when run from eclipse development environment.
Issue is:
Deploy web.war ...
0
votes
0answers
50 views
java.io.NotSerializableException when implementing UserDetailsService
I am working with spring-security-oauth2 and I faced with such exception:
Caused by: java.io.NotSerializableException: com.samsung.diary.security.UserDetailsServiceImpl
at ...
0
votes
1answer
107 views
Spring security configuration error /WEB-INF/applicationContext.xml and there's no bean called springSecurityFilterChain
I am trying to get my head around Spring Security and I am constantly facing these issues. In the following configuration, I am receiving the error saying it cannot find " ...
0
votes
0answers
31 views
iOS web application mode with spring security authorization
I am trying to run a spring mvc site with authorization based on spring security at iOS devices web app mode and it seems the "remember me" feature doesn't work. I looked for the solution and found ...
0
votes
0answers
68 views
Spring security authenticating error
I have an application which I have configured so I can use database to authenticate users.
Trying to login as either user or admin with the set up username and password gives this error:
HTTP ...
1
vote
1answer
90 views
Combination of Tile2 + Spring3 + Struts2
I have implemented Spring security on Struts2 which perfectly works. Once I have added tiles to my project it runs into following error, I have provided some parts of my code, please let me know if ...
0
votes
2answers
4k views
Spring security authentication using LDAP
I am new to spring security and i've tried to run a sample application based on the spring-security ldap example. Below is my configuration of the applicationContext-security.xml:
<http>
...
1
vote
1answer
235 views
Spring LDAP Samples
Am using A java web application using springs. i need to authenticate the users before logging in to my application. And i need to use LDAP. I googled it and not getting a proper sample to follow. ...
0
votes
0answers
24 views
spring security with my own table
I would ask a question about spring security !!
is that possible to configure authentication-provide with my own table this is my exemple
tale "utilisateur"
CREATE TABLE utilisateur
(
id_user ...
9
votes
3answers
4k 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?
1
vote
1answer
828 views
Redirect to specific page after login
In Java EE security, if a user tries to access a secured resource, they are redirected to the login page. After successful login they are redirected to previously requested secure resource.
Is it ...
0
votes
0answers
25 views
spring security with jdbc (my table user) is not working
I'm using my own table "utilisateur" for login with spring security
It is ok a the first but I don't why it is not working now
<sec:authentication-manager alias="authenticationManager">
...
0
votes
1answer
3k views
Spring Security 3 - AuthenticationSuccessHandler/FailureHandler Not Working
I'm using Spring Security 3 to authenticate users and I'm using a form in a pop-up to allow users to enter their credentials. I'm using Ajax to process the login. The logging in process works great, ...
0
votes
1answer
75 views
Error in Spring : org.springframework.beans.factory.NoSuchBeanDefinitionException:
I am facing this error in integration of spring security :
org.springframework.beans.factory.NoSuchBeanDefinitionException: No
bean named 'springSecurityFilterChain' is defined
This is my ...

