Spring Security 4 Hello World 基于注解 和 XML 例子(带源码)

简介: Spring Security 4 Hello World 基于注解 和 XML 例子(带源码)

下一篇:

Spring Security 4 自定义登录表单 注解和XML例子

原文:http://websystique.com/spring-security/spring-security-4-hello-world-annotation-xml-example/


【已翻译文章,点击分类里面的spring security 4进行查看】

【翻译by 明明如月 QQ 605283073】


本教程演示Spring MVC web项目中Spring Security 4的用法。通过url对访问进行验证。

我们将通过一个经典的hello world例子来学习Spring Security 4 的基本用法。

本文使用基于Servlet3.0容器的Spring注解(因此没有web.xml文件)。同样也会给出基于Security 配置的xml配置。

所用到的技术和软件:

  • Spring 4.1.6.RELEASE
  • Spring Security 4.0.1.RELEASE
  • Maven 3
  • JDK 1.7
  • Tomcat 8.0.21
  • Eclipse JUNO Service Release 2

让我们开始吧...

第1步: 项目目录结构

下面是最终的项目结构:

111.png

现在让我为你展示上面目录结构里面的内容和每个的详细介绍。

第2步: 更新 pom.xml 包含所需的依赖

1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3. <modelVersion>4.0.0</modelVersion>
4. 
5. <groupId>com.websystique.springsecurity</groupId>
6. <artifactId>SpringSecurityHelloWorldAnnotationExample</artifactId>
7. <version>1.0.0</version>
8. <packaging>war</packaging>
9. 
10. <name>SpringSecurityHelloWorldAnnotationExample</name>
11. 
12. <properties>
13. <springframework.version>4.1.6.RELEASE</springframework.version>
14. <springsecurity.version>4.0.1.RELEASE</springsecurity.version>
15. </properties>
16. 
17. <dependencies>
18. <!-- Spring -->
19. <dependency>
20. <groupId>org.springframework</groupId>
21. <artifactId>spring-core</artifactId>
22. <version>${springframework.version}</version>
23. </dependency>
24. <dependency>
25. <groupId>org.springframework</groupId>
26. <artifactId>spring-web</artifactId>
27. <version>${springframework.version}</version>
28. </dependency>
29. <dependency>
30. <groupId>org.springframework</groupId>
31. <artifactId>spring-webmvc</artifactId>
32. <version>${springframework.version}</version>
33. </dependency>
34. 
35. <!-- Spring Security -->
36. <dependency>
37. <groupId>org.springframework.security</groupId>
38. <artifactId>spring-security-web</artifactId>
39. <version>${springsecurity.version}</version>
40. </dependency>
41. <dependency>
42. <groupId>org.springframework.security</groupId>
43. <artifactId>spring-security-config</artifactId>
44. <version>${springsecurity.version}</version>
45. </dependency>
46. 
47. <dependency>
48. <groupId>javax.servlet</groupId>
49. <artifactId>javax.servlet-api</artifactId>
50. <version>3.1.0</version>
51. </dependency>
52. <dependency>
53. <groupId>javax.servlet.jsp</groupId>
54. <artifactId>javax.servlet.jsp-api</artifactId>
55. <version>2.3.1</version>
56. </dependency>
57. <dependency>
58. <groupId>javax.servlet</groupId>
59. <artifactId>jstl</artifactId>
60. <version>1.2</version>
61. </dependency>
62. </dependencies>
63. 
64. <build>
65. <pluginManagement>
66. <plugins>
67. <plugin>
68. <groupId>org.apache.maven.plugins</groupId>
69. <artifactId>maven-compiler-plugin</artifactId>
70. <version>3.2</version>
71. <configuration>
72. <source>1.7</source>
73. <target>1.7</target>
74. </configuration>
75. </plugin>
76. <plugin>
77. <groupId>org.apache.maven.plugins</groupId>
78. <artifactId>maven-war-plugin</artifactId>
79. <version>2.4</version>
80. <configuration>
81. <warSourceDirectory>src/main/webapp</warSourceDirectory>
82. <warName>SpringSecurityHelloWorldAnnotationExample</warName>
83. <failOnMissingWebXml>false</failOnMissingWebXml>
84. </configuration>
85. </plugin>
86. </plugins>
87. </pluginManagement>
88. <finalName>SpringSecurityHelloWorldAnnotationExample</finalName>
89. </build>
90. </project>


首先需要注意的是maven-war-plugin 的声明。鉴于我们使用纯注解,甚至都没用web.xml。因此我们需配置此插件防止maven创建war包失败。

我们使用的是Spring 和 Spring Security(在本文发表时)最新版本。与此同时,由于我们将使用servlet api和jstl在我们界面中,我们也添加了JSP/Servlet/Jstl的依赖。

一般来说,容器也许已经包含了这些库,所以我们在pom.xml文件中,可以设置他们的scope 为provided。

第3步: 添加 Spring Security 配置类

添加spring security到我们应用中第一步是要创建Spring Security Java 配置类。

这个配置创建一个叫springSecurityFilterChain的Servlet过滤器,来对我们应用中所有的安全相关的事项(保护应用的所有url,验证用户名密码,表单重定向等)负责。

com.websystique.springsecurity.configuration.SecurityConfiguration

1. <pre class="brush: java; title: ; notranslate" title="" style="box-sizing: border-box; border: 0px; font-family: 'Courier 10 Pitch', Courier, monospace; font-size: 15px; margin-top: 0px; margin-bottom: 1.6em; outline: 0px; padding: 1.6em; vertical-align: baseline; line-height: 1.6; max-width: 100%; overflow: auto; color: rgb(64, 64, 64); background: rgb(238, 238, 238);">package com.websystique.springsecurity.configuration;
2. 
3. import org.springframework.beans.factory.annotation.Autowired;
4. import org.springframework.context.annotation.Configuration;
5. import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
6. import org.springframework.security.config.annotation.web.builders.HttpSecurity;
7. import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
8. import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
9. 
10. @Configuration
11. @EnableWebSecurity
12. public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
13. 
14.   @Autowired
15.   public void configureGlobalSecurity(AuthenticationManagerBuilder auth) throws Exception {
16.     auth.inMemoryAuthentication().withUser("bill").password("abc123").roles("USER");
17.     auth.inMemoryAuthentication().withUser("admin").password("root123").roles("ADMIN");
18.     auth.inMemoryAuthentication().withUser("dba").password("root123").roles("ADMIN","DBA");//dba have two roles.
19.   }
20. 
21.   @Override
22.   protected void configure(HttpSecurity http) throws Exception {
23. 
24.     http.authorizeRequests()
25.       .antMatchers("/", "/home").permitAll() 
26.     .antMatchers("/admin/**").access("hasRole('ADMIN')")
27.     .antMatchers("/db/**").access("hasRole('ADMIN') and hasRole('DBA')")
28.     .and().formLogin()
29.     .and().exceptionHandling().accessDeniedPage("/Access_Denied");
30. 
31.   }
32. }

上面这个类的configureGlobalSecurity方法为 AuthenticationManagerBuilder配置用户授权和角色信息 。

AuthenticationManagerBuilder (权限管理器创建器)创建负责所有权限请求的AuthenticationManager(权限管理器)。

注意:在上面例子中,我们使用的是 基于内存的权限认证,当然你也可以自由选择JDBC,LDAP或者基于其他技术的权限认证。

重写Configure方法,来配置HttpSecurity 来配置基于特定http请求的安全认证。

它默认是实用所有请求的,但是也可以通过requestMatcher(RequestMatcher)/antMathchers 或者其他类似的方法进行限定。

在上述配置中,我们可以看到‘/’ & ‘/home’这种Url配置是不安全的,任何人都可以访问。

只有具有ADMIN权限的用户才可以访问符合‘/admin/**’的url。只能够同时具有ADMIN 和 DBA权限的人才可以访问符合‘/db/**’ 的Url 。

formLogin 方法提供了基于表单的权限验证,将会产生一个默认的对用户的表单请求。

你也可以自定义登录表单。在接下来的文章里面,你可以看到类似的例子。

我们也会使用exceptionHandling().accessDeniedPage() ,在本例中它将获取所有的403(http访问拒绝)异常然后显示我们的用户定义的HTTP403页面(虽然也没有太大益处)。

上面的安全配置 XML 配置形式如下:

1. <beans:beans xmlns="http://www.springframework.org/schema/security"
2. xmlns:beans="http://www.springframework.org/schema/beans"
3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
5.     http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-4.0.xsd">
6. 
7. <http auto-config="true" >
8. <intercept-url pattern="/" access="permitAll" />
9. <intercept-url pattern="/home" access="permitAll" />
10. <intercept-url pattern="/admin**" access="hasRole('ADMIN')" />
11. <intercept-url pattern="/dba**" access="hasRole('ADMIN') and hasRole('DBA')" />
12. <form-login  authentication-failure-url="/Access_Denied" />
13. </http>
14. 
15. <authentication-manager >
16. <authentication-provider>
17. <user-service>
18. <user name="bill"  password="abc123"  authorities="ROLE_USER" />
19. <user name="admin" password="root123" authorities="ROLE_ADMIN" />
20. <user name="dba"   password="root123" authorities="ROLE_ADMIN,ROLE_DBA" />
21. </user-service>
22. </authentication-provider>
23. </authentication-manager>
24. 
25. 
26. </beans:beans>



第 4步: 通过war注册springSecurityFilter(spring安全过滤器)

下面是定制初始化war包中的springSecurityFilter(第三步中的)注册类。

com.websystique.springsecurity.configuration.SecurityWebApplicationInitializer

1. package com.websystique.springsecurity.configuration;
2. 
3. import org.springframework.security.web.context.AbstractSecurityWebApplicationInitializer;
4. 
5. public class SecurityWebApplicationInitializer extends AbstractSecurityWebApplicationInitializer {
6. 
7. }

上面对应的xml配置形式为:

1. <filter-name>springSecurityFilterChain</filter-name>
2. <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
3. </filter>
4. 
5. <filter-mapping>
6. <filter-name>springSecurityFilterChain</filter-name>
7. <url-pattern>/*</url-pattern>
8. </filter-mapping>


第5步: 添加 Controller(控制器)

com.websystique.springsecurity.controller.HelloWorldController

1. package com.websystique.springsecurity.controller;
2. 
3. import javax.servlet.http.HttpServletRequest;
4. import javax.servlet.http.HttpServletResponse;
5. 
6. import org.springframework.security.core.Authentication;
7. import org.springframework.security.core.context.SecurityContextHolder;
8. import org.springframework.security.core.userdetails.UserDetails;
9. import org.springframework.security.web.authentication.logout.SecurityContextLogoutHandler;
10. import org.springframework.stereotype.Controller;
11. import org.springframework.ui.ModelMap;
12. import org.springframework.web.bind.annotation.RequestMapping;
13. import org.springframework.web.bind.annotation.RequestMethod;
14. 
15. @Controller
16. public class HelloWorldController {
17. 
18. 
19.     @RequestMapping(value = { "/", "/home" }, method = RequestMethod.GET)
20.     public String homePage(ModelMap model) {
21.         model.addAttribute("greeting", "Hi, Welcome to mysite. ");
22.         return "welcome";
23.     }
24. 
25.     @RequestMapping(value = "/admin", method = RequestMethod.GET)
26.     public String adminPage(ModelMap model) {
27.         model.addAttribute("user", getPrincipal());
28.         return "admin";
29.     }
30. 
31.     @RequestMapping(value = "/db", method = RequestMethod.GET)
32.     public String dbaPage(ModelMap model) {
33.         model.addAttribute("user", getPrincipal());
34.         return "dba";
35.     }
36. 
37.     @RequestMapping(value="/logout", method = RequestMethod.GET)
38.        public String logoutPage (HttpServletRequest request, HttpServletResponse response) {
39.           Authentication auth = SecurityContextHolder.getContext().getAuthentication();
40.           if (auth != null){    
41.              new SecurityContextLogoutHandler().logout(request, response, auth);
42.           }
43.           return "welcome";
44.        }
45. 
46.     @RequestMapping(value = "/Access_Denied", method = RequestMethod.GET)
47.     public String accessDeniedPage(ModelMap model) {
48.         model.addAttribute("user", getPrincipal());
49.         return "accessDenied";
50.     }
51. 
52.     private String getPrincipal(){
53.         String userName = null;
54.         Object principal = SecurityContextHolder.getContext().getAuthentication().getPrincipal();
55. 
56.         if (principal instanceof UserDetails) {
57.             userName = ((UserDetails)principal).getUsername();
58.         } else {
59.             userName = principal.toString();
60.         }
61.         return userName;
62.     }
63. }


controller类中的方法比较繁琐.getPrincipal 方法返回从Spring SecurityContext中记录的登录的用户。

logoutPage 方法简单调用 SecurityContextLogoutHandler().logout(request, response, auth)方法
来处理退出操作。

它很巧妙而且将你从不容易管理的jsp页面退出逻辑中解放出来。

你也许注意到上面没有出现 /login’,因为Spring Security默认会产生和处理。

第6步: 添加 SpringMVC 配置类

com.websystique.springsecurity.configuration.HelloWorldConfiguration

1. package com.websystique.springsecurity.configuration;
2. 
3. import org.springframework.context.annotation.Bean;
4. import org.springframework.context.annotation.ComponentScan;
5. import org.springframework.context.annotation.Configuration;
6. import org.springframework.web.servlet.ViewResolver;
7. import org.springframework.web.servlet.config.annotation.EnableWebMvc;
8. import org.springframework.web.servlet.view.InternalResourceViewResolver;
9. import org.springframework.web.servlet.view.JstlView;
10. 
11. @Configuration
12. @EnableWebMvc
13. @ComponentScan(basePackages = "com.websystique.springsecurity")
14. public class HelloWorldConfiguration {
15. 
16. @Bean
17. public ViewResolver viewResolver() {
18. InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
19.         viewResolver.setViewClass(JstlView.class);
20.         viewResolver.setPrefix("/WEB-INF/views/");
21.         viewResolver.setSuffix(".jsp");
22. 
23. return viewResolver;
24.     }
25. 
26. }


第7步: 添加Initializer(初始化器)类

com.websystique.springsecurity.configuration.HelloWorldConfiguration

1. package com.websystique.springsecurity.configuration;
2. 
3. import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;
4. 
5. public class SpringMvcInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
6. 
7. @Override
8. protected Class<?>[] getRootConfigClasses() {
9. return new Class[] { HelloWorldConfiguration.class };
10.     }
11. 
12. @Override
13. protected Class<?>[] getServletConfigClasses() {
14. return null;
15.     }
16. 
17. @Override
18. protected String[] getServletMappings() {
19. return new String[] { "/" };
20.     }
21. 
22. }


注意上面的初始化器继承自AbstractAnnotationConfigDispatcherServletInitializer ,它是所有WebApplicationInitializer 实现的基类.

Servlet 3.0 环境下,通过实现WebApplicationInitializer 来配置ServletContext 。这意味着我们将不使用web.xml而且将在支持servlet3.0容器下发布此应用。

第8步: 添加Views(视图)


welcome.jsp

1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
2. <html>
3. <head>
4. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
5. <title>HelloWorld page</title>
6. </head>
7. <body>
8.     Greeting : ${greeting}
9.     This is a welcome page.
10. </body>
11. </html>


admin.jsp


1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
3. <html>
4. <head>
5. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6. <title>HelloWorld Admin page</title>
7. </head>
8. <body>
9.     Dear <strong>${user}</strong>, Welcome to Admin Page.
10. <a href="<c:url value="/logout" />">Logout</a>
11. </body>
12. </html>

dba.jsp

1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
3. <html>
4. <head>
5. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6. <title>DBA page</title>
7. </head>
8. <body>
9.     Dear <strong>${user}</strong>, Welcome to DBA Page.
10. <a href="<c:url value="/logout" />">Logout</a>
11. </body>
12. </html>

accessDenied.jsp

1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
3. <html>
4. <head>
5. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6. <title>AccessDenied page</title>
7. </head>
8. <body>
9.     Dear <strong>${user}</strong>, You are not authorized to access this page
10. <a href="<c:url value="/logout" />">Logout</a>
11. </body>
12. </html>


第9步: 创建和发布应用

正如第7步提到的, 在我们应用中没有用到web.xml作为ServletContext 来启动程序.

现在构建 war 包(通过eclipse或者myeclipse)或者通过maven 命令行( mvn clean install). 在一个 Servlet 3.0 容器中发布本应用. 在这里我使用的是tomcat, 我将 war 文件放到 tomcat webapps 文件夹然后点击 tomcat安装目录的bin文件夹下的start.bat .

启动应用

打开浏览器 在地址栏输入 localhost:8080/SpringSecurityHelloWorldAnnotationExample/并回车


相关文章
|
17天前
|
数据采集 监控 前端开发
二级公立医院绩效考核系统源码,B/S架构,前后端分别基于Spring Boot和Avue框架
医院绩效管理系统通过与HIS系统的无缝对接,实现数据网络化采集、评价结果透明化管理及奖金分配自动化生成。系统涵盖科室和个人绩效考核、医疗质量考核、数据采集、绩效工资核算、收支核算、工作量统计、单项奖惩等功能,提升绩效评估的全面性、准确性和公正性。技术栈采用B/S架构,前后端分别基于Spring Boot和Avue框架。
|
1天前
|
监控 Java 应用服务中间件
高级java面试---spring.factories文件的解析源码API机制
【11月更文挑战第20天】Spring Boot是一个用于快速构建基于Spring框架的应用程序的开源框架。它通过自动配置、起步依赖和内嵌服务器等特性,极大地简化了Spring应用的开发和部署过程。本文将深入探讨Spring Boot的背景历史、业务场景、功能点以及底层原理,并通过Java代码手写模拟Spring Boot的启动过程,特别是spring.factories文件的解析源码API机制。
9 2
|
7天前
|
前端开发 Java 开发者
Spring生态学习路径与源码深度探讨
【11月更文挑战第13天】Spring框架作为Java企业级开发中的核心框架,其丰富的生态系统和强大的功能吸引了无数开发者的关注。学习Spring生态不仅仅是掌握Spring Framework本身,更需要深入理解其周边组件和工具,以及源码的底层实现逻辑。本文将从Spring生态的学习路径入手,详细探讨如何系统地学习Spring,并深入解析各个重点的底层实现逻辑。
28 9
|
1月前
|
Java Spring
Spring底层架构源码解析(三)
Spring底层架构源码解析(三)
104 5
|
1月前
|
XML Java 数据格式
Spring底层架构源码解析(二)
Spring底层架构源码解析(二)
|
1月前
|
XML Java 数据格式
手动开发-简单的Spring基于注解配置的程序--源码解析
手动开发-简单的Spring基于注解配置的程序--源码解析
45 0
|
1月前
|
XML Java 数据格式
手动开发-简单的Spring基于XML配置的程序--源码解析
手动开发-简单的Spring基于XML配置的程序--源码解析
79 0
|
1月前
|
XML 前端开发 Java
讲解SSM的xml文件
本文详细介绍了SSM框架中的xml配置文件,包括springMVC.xml和applicationContext.xml,涉及组件扫描、数据源配置、事务管理、MyBatis集成以及Spring MVC的视图解析器配置。
55 1
|
3月前
|
XML Java 数据格式
Spring5入门到实战------7、IOC容器-Bean管理XML方式(外部属性文件)
这篇文章是Spring5框架的实战教程,主要介绍了如何在Spring的IOC容器中通过XML配置方式使用外部属性文件来管理Bean,特别是数据库连接池的配置。文章详细讲解了创建属性文件、引入属性文件到Spring配置、以及如何使用属性占位符来引用属性文件中的值。
Spring5入门到实战------7、IOC容器-Bean管理XML方式(外部属性文件)
|
6天前
|
Java Maven
maven项目的pom.xml文件常用标签使用介绍
第四届人文,智慧教育与服务管理国际学术会议(HWESM 2025) 2025 4th International Conference on Humanities, Wisdom Education and Service Management
48 8