dengdaiyemanren / java

java课程学习blog以及代码
3 stars 0 forks source link

springsecurity笔记 #37

Open dengdaiyemanren opened 7 years ago

dengdaiyemanren commented 7 years ago

前言

介绍

"Authentication" is the process of establishing a principal is who they claim to be (a "principal" generally means a user, device or some other system which can perform an action in your application)."Authorization" refers to the process of deciding whether a principal is allowed to perform an action within your application.

支持认证标准

基本的POM依赖

<dependencies>
<!-- ... other dependency elements ... -->
<dependency>
    <groupId>org.springframework.security</groupId>
    <artifactId>spring-security-web</artifactId>
    <version>4.2.1.RELEASE</version>
</dependency>
<dependency>
    <groupId>org.springframework.security</groupId>
    <artifactId>spring-security-config</artifactId>
    <version>4.2.1.RELEASE</version>
</dependency>
</dependencies>

java 配置化

dengdaiyemanren commented 7 years ago

体系和实现

dengdaiyemanren commented 7 years ago

测试

dengdaiyemanren commented 7 years ago

web应用安全

dengdaiyemanren commented 7 years ago

认证