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
1answer
57 views

Spring security + sendRedirect not working

Currently my spring-security.xml looks like this: <global-method-security pre-post-annotations="enabled" /> <http pattern="/login" security="none"/> <http pattern="/assets/**" ...
0
votes
0answers
67 views

Display custom error messages on login in Spring Security

When a login attempt fails, Spring Security displays a default message like : Bad credentials I want to override this message like : Incorrect user name and/or password. Access denied. ...
4
votes
2answers
91 views

Security of web services (REST & SOAP) [closed]

My first post here! I wanted to get some community help on security of web services. I'm doing a state of the art on web services security. I need every bit of a solution out there that solves ...
0
votes
1answer
38 views

What is the use case for overriding default login-processing-url in spring security

Here is a sample config for spring security form login <http auto-config="true" use-expressions="false"> <form-login login-processing-url="/static/j_spring_security_check" ...
0
votes
1answer
32 views

Conditional Statements in Spring @preauthorize EL

Hi here my problem is to add conditional statements in @preauthorize spring annotation ,I need to give Users_view and Users_manage permission for principal but i cant add both permission like below ...
0
votes
1answer
43 views

java spring security, if login user is disabled, how to know password is wrong or not

**Login** in *spring security*, when user is disabled, i can't know the password is wrong or not. please,tell me how. [AbstractUserDetailsAuthenticationProvider][1] in spring security: ...
0
votes
1answer
20 views

How do I shutdown spring security ldap gracefully

I'm having the following problem when stopping my Spring based application on Tomcat... SEVERE: The web application [/Toolbox] appears to have started a thread named [Thread-8] but has failed to stop ...
0
votes
0answers
21 views

Spring OAuth to secure restful api calls

I have restful api developed using Spring Restful. But now I need to secure the webservice call by implementing OAuth in my spring app. Please suggest me any good example or reference which will be ...
0
votes
1answer
36 views

spring-security not invalidating http sessions

I have a soap web service and i implemented a spring security authentication. I generated a client which is used in the front end. My problem is that each time the client makes a request the ...
-3
votes
0answers
82 views

spring security login form not working correctly

I have a web application and i want to secure it by using spring security. I have done some progress in it but i'm struggling in a particular condition. I have setup spring configuration file to ...
0
votes
1answer
53 views

Spring security does not work

I am getting an error when I try to login (or, when I abort the HTTP Basic dialog with escape) HTTP Status 401 - PreparedStatementCallback; bad SQL grammar [select username,authority from ...
0
votes
1answer
80 views

This webpage has a redirect loop, Spring application

I have a web application in the following environment. Spring 3.2.2 (recently upgraded from Spring 3.2.0). Spring Security 3.2.0 M1. Hibernate 4.2.0 CR1. Apache Tomcat 7.0.35.0. Oracle 10g. NetBeans ...
0
votes
0answers
33 views

Spring security SecurityContextHolder is unreachable in a common class

I have created a managed bean and inserted in one of its methods this snippet of code and it worked fine : Authentication auth = SecurityContextHolder.getContext().getAuthentication(); ...
1
vote
1answer
29 views

Tables in Spring security

I want group based security in my application. However I don't understand how to use it. Looking at the two different database schemas from the appendix, I got some questions. Am I supposed to extend ...
1
vote
1answer
51 views

Hash (with Spring) and salt: is this safe?

I've a Spring based web app, so I came up using spring-security-3.0.8 (I know, that's not a good reason, lol) and I find out the PasswordEncoder class. In my case I'm using the Md5PasswordEncoder, but ...
1
vote
1answer
98 views

Spring Security:redirection to a specific page based on roles in JSF

I work with JSF and Spring Security. I use a custom login page. I have two roles : Administrator and User. My question is how to redirect to different pages for different roles. For example if the ...
1
vote
0answers
25 views

Spring Security with two LDAP servers

Out corporate network is set up with different Active Directory / LDAP servers, one server per each location. Example: Germany: ldap://ldapserver1.germany.corp.domain/DC=germany,DC=corp,DC=domain ...
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 ...
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 ...
0
votes
1answer
39 views

Hard?: Spring security on classes that are not Spring Beans?

Definitely need some expert help with this! I think this is mainly a Spring Security question, but as I don't know for sure, so I am also tagging with the general Spring tag! When the Application ...
0
votes
2answers
43 views

Cannot get object from Session

I have the following scenario: I access to a web application - that makes use of spring security, create an object in session, let us say a cart with some entries. I access the application using a ...
1
vote
1answer
61 views

Adding groups in Spring security

I want to use the group abstraction in my application. However I don't understand how to configure it nor which tables I need. Is it right that you have one user table with the username, password and ...
0
votes
1answer
30 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
1answer
56 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 ...
1
vote
1answer
62 views

CSRF: Generate token for every request

Right now, we have csrf token per session. And adding this token jsp's using hidden field. following snippet gives only one per session: token = (String) ...
0
votes
1answer
66 views

BadCredentialsException is spring-security

continue my projects I encountered a problem in the authorization for accounts in Spring setsurity - Problems in the query to the database, all the settings are correct, the database is created at the ...
0
votes
1answer
44 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
1answer
30 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. ...
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 ...
0
votes
0answers
40 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
1answer
48 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
0answers
30 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
2answers
34 views

What goes into Spring Security's ACL_OBJECT_IDENTITY table?

I'm attempting to integrate Spring Security with ACL support into an existing GWT application, and if I click another unhelpful link I swear will need a new mouse and keyboard. I've worked through ...
0
votes
1answer
65 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
47 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' ...
2
votes
1answer
49 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 ...
0
votes
1answer
66 views

securing SPA multi-tenant SaaS application

I need some help with securing a single page multi-tenant saas application. Questions: 1) What is the best way to implement it? I am trying the build the application using angularjs, spring mvc and ...
0
votes
1answer
92 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
39 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
47 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) ...
0
votes
1answer
33 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 ...
-2
votes
0answers
57 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 ...
1
vote
1answer
79 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 ...
0
votes
1answer
109 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
32 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
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 ...
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 ...
0
votes
0answers
26 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"> ...

1 2 3 4 5 81