1,pac4j是什么?
pac4j是一个支持多种支持多种协议的身份认证的Java客户端。
2,pac4j的12种客户端认证机制:目前我只有用过第一和第八种。
OAuth (1.0 & 2.0): Facebook, Twitter, Google, Yahoo, LinkedIn, Github... using the
pac4j-oauth
moduleCAS (1.0, 2.0, SAML, logout & proxy) + REST API support using the
pac4j-cas
moduleHTTP (form, basic auth, IP, header, GET/POST parameter authentications) using the
pac4j-http
moduleOpenID using the
pac4j-openid
moduleSAML (2.0) using the
pac4j-saml
moduleGoogle App Engine UserService using the
pac4j-gae
moduleOpenID Connect 1.0 using the
pac4j-oidc
moduleJWT using the
pac4j-jwt
moduleLDAP using the
pac4j-ldap
modulerelational DB using the
pac4j-sql
moduleMongoDB using the
pac4j-mongo
moduleStormpath using the
pac4j-stormpath
module.
3,maven配置
<dependency>
<groupId>org.pac4j</groupId>
<artifactId>spring-security-pac4j</artifactId>
<version>1.4.3</version>
</dependency>
<dependency>
<groupId>org.pac4j</groupId>
<artifactId>pac4j-oauth</artifactId>
<version>1.8.8</version>
</dependency>
主要是三个jar包:
4,下面是我收藏的项目链接,对于各种认证机制的学习非常有帮助: