配置和使用
最近项目中要使用到 spring-security,闲来没事就研究了下。发现入门挺简单的,在这里
把自己的心得发下,希望对没有接触过想接触的朋友有帮助。
1、在 spring-security 官网下载最新 jar 然后拷贝 jar 到项目的 lib 下。
2、在 classpath 下添加 security 配置文件,例如 applicationContext-security.xml.网上现在
大多都是 2.0 的 schema. 要根据自己使用的版本而定.下面是 3.0 的 schema.
1. <?xmlversion="1.0"encoding="UTF-8"?>
2. <beans:beansxmlns="http://www.springframework.org/schema/security"
3. xmlns:beans="http://www.springframework.org/schema/beans"
4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5. xsi:schemaLocation="http://www.springframework.org/schema/beans
6. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
7. http://www.springframework.org/schema/security
8. http://www.springframework.org/schema/security/spring-security-
3.0.xsd">
9.
10. </beans:beans>
!"#!"
$#%%&&&'"&(%$"%
#!"$#%%&&&'"&(%$"%!"
#$#%%&&&&%)%*+,-$""
#$","$#%%&&&'"&(%$"%!"
$#%%&&&'"&(%$"%!"%
!"
$#%%&&&'"&(%$"%
$#%%&&&'"&(%$"%%
%!"#!"
3、然后在 web.xml 中添加配置,内容如下:
1. <!--springsecurity-->
2. <context-param>
3. <param-name>contextConfigLocation</param-name>
4. <param-value>
5. classpath*:/applicationContext*.xml