Shiro教程(一)Maven管理Shrio Jar包

Apache Shiro 是 Java  的一个安全框架。我们经常看到它被拿来和 Spring  的 Security  来对比。大部分人认为 Shiro  比 Security  要简单,然后说 Shiro  比 Security  要简单。我的观点赞成一半一半吧。

首先 Shiro  确实和 Security  是同类型的框架,主要用来做安全,也就是我们俗称的权限校验(控制)。居多人对 Shrio  的定义为好入门。



我的项目是用 Maven  管理的Jar 包,如果不了解 Maven  ,不会 Maven  的,可以找我要学习视频。下面把 Shiro  要用的Jar Maven 的配置。

在pom.xml配置文件中,配置

  1. quartz
  2. org.opensymphony.quartz
  3. 1.6.1
  4. org.apache.shiro
  5. shiro-core
  6. 1.2.2
  7. org.apache.shiro
  8. shiro-web
  9. 1.2.2
  10. org.apache.shiro
  11. shiro-quartz
  12. 1.2.2
  13. org.apache.shiro
  14. shiro-spring
  15. 1.2.2

如果是使用 EHCache  则还要添加下面的:

 
  
  1. ehcache-core
  2. net.sf.ehcache
  3. 2.5.0
  4. org.apache.shiro
  5. shiro-ehcache
  6. 1.2.2

如果是用 Redis  则添加(推荐):

 
  
  1. redis.clients
  2. jedis
  3. 2.1.0
原文地址: https://www.sojson.com/blog/130.html

你可能感兴趣的:(Shiro教程(一)Maven管理Shrio Jar包)