File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Tomcat and the fly likes how to provide security to url using springs Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Products » Tomcat
Reply Bookmark "how to provide security to url using springs" Watch "how to provide security to url using springs" New topic
Author

how to provide security to url using springs

Rajitha koduru
Greenhorn

Joined: Sep 20, 2012
Posts: 4
Need to provide security to an url(eg:http://localhost:8080/webapplication1/index.jsp) in springs project(url is not a part of springs project).


In security-context.xml

<security:intercept-url pattern="http://localhost:8080/webapplication1/index.jsp"
access="ROLE_READ,ROLE_READWRITE,ROLE_NOACCESS" /> ============ security is not provided(url belongs to other project)


<security:intercept-url pattern="/login.jsp"
access="ROLE_READ,ROLE_READWRITE,ROLE_NOACCESS" /> ============ security is provided(login.jsp is part of springs project)


new to springs can someone help to solve this
Tim Holloway
Saloon Keeper

Joined: Jun 25, 2001
Posts: 14487
    
    7

I'm not as familiar with Spring Security as I should be, but I don't think Spring is what you need for defending URLs.

Spring Security can be paired with J2EE standard container security, however, and container security does protect URLs, using patterns and rules that you define in WEB-INF/web.xml.


Customer surveys are for companies who didn't pay proper attention to begin with.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: how to provide security to url using springs
 
Similar Threads
Session getting created twice and session not getting decremented.
Spring 3 + Spring Security 3 + Struts2 + Hibernate 3
Problem with <security:intercept-url pattern=...>
"Spring Security Application" Initiated by Apache