- 1、本文档共16页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
SpringSecurity应用(一)
作者:夏天的森林??来源:博客园??发布时间:2011-09-27 00:17??阅读:1364 次??原文链接?? [收藏]??
今天领导要了我们前端组从十月到年末的开发计划,发现年底的项目终于回归到了javascript做前端了,到时好好练练手。另外,发现以后可能会经常做权限管理,所以现在正好有点时间打算把SpringSecurity资料认真整理下,今天是入门级的,希望以后会越来越来越深入。
java项目首先要提的就是jar包了,Springsecurity的jar下载地址:/spring-security/site/downloads.html。不过我的项目里的jar包比较旧点了,是从以前项目抽取出来的,我的工程结构图如下:
第一个实例:
第一个例子是最基本,最简单的,我第一次接触springsecurity时候觉得这个技术真惊艳,不过现在感觉也就那么回事了。
我首先编写的是web.xml:
view source
print?
?xml version=1.0 encoding=UTF-8? web-app xmlns:xsi=/2001/XMLSchema-instance?
xmlns=/xml/ns/javaee? xmlns:web=/xml/ns/javaee/web-app_2_5.xsd?
xsi:schemaLocation=/xml/ns/javaee /xml/ns/javaee/web-app_2_5.xsd? id=WebApp_ID version=2.5
??display-nameSpringSecurityPrj/display-name ??context-param
????param-namecontextConfigLocation/param-name ????param-value
????????classpath:applicationContext*.xml ????/param-value
??/context-param ??filter
????filter-namespringSecurityFilterChain/filter-name ????filter-classorg.springframework.web.filter.DelegatingFilterProxy/filter-class
??/filter ??filter-mapping
????filter-namespringSecurityFilterChain/filter-name ????url-pattern/*/url-pattern
??/filter-mapping ??listener
????listener-classorg.springframework.web.context.ContextLoaderListener/listener-class ??/listener
??welcome-file-list ????welcome-fileindex.jsp/welcome-file
??/welcome-file-list /web-app 接下来编写的是applicationContext-security.xml文件:
view source
print?
?xml version=1.0 encoding=UTF-8? beans:beans xmlns=/schema/security
????xmlns:beans=/schema/beans ????xmlns:xsi=/2001/XMLSchema-instance
????xsi:schemaLocation=/schema/beans? ????????/schema/beans/spring-beans-3.0.xsd
????????/schema/security ????????/schema/security/spring-security-3.0.xsd
????!-- 自动配置模式,拦截所有请求,有ROLE_USER才可以通过 -- ????http auto-config=true
????????intercept-url pattern=/** access=ROLE_USER/ ????/http
????!-- 认证管理器。用户名密码都集成在配置文件中 --? ????authentication-manager
??
您可能关注的文档
最近下载
- 2019年领导班子对照检查材料 [--镇领导班子对照检查材料].docx VIP
- 党课讲稿含PPT课件:二十届三中全会提出的新概念新观点新论断.pptx VIP
- 对照检查材料六个方面.docx VIP
- 加快建设现代化产业体系的具体内容 .pdf VIP
- 《变电站安全培训》.pptx VIP
- 2024新人教版生物学七年级下册《第三单元 植物的生活》大单元整体教学设计.pdf
- SBJ 17-2009 室外装配冷库设计规范及条文说明(高清版).pdf
- 本事詩(唐)孟啓新格式.pdf
- 推进现代化产业体系建设实施方案.pdf VIP
- AWS D1.1-D1.1M-2015(2016)结构钢焊接规范(中文版).doc
文档评论(0)