| 组织ID: |
org.crazycake |
| 项目ID: |
shiro-redis |
| 版本: |
2.8.18 |
| 最后修改时间: |
2018-09-14 13:52:58 |
| 包类型: |
jar |
| 标题: |
shiro-redis |
| 描述: |
shiro only provide the support of ehcache and concurrentHashMap. Here is an implement of redis cache can be used by shiro. Hope it will help you! |
| 相关URL: |
https://github.com/alexxiyang/shiro-redis |
| 大小: |
21.14KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.crazycake</groupId>
<artifactId>shiro-redis</artifactId>
<version>2.8.18</version>
</dependency>
|
| Gradle引入代码: |
org.crazycake:shiro-redis:2.8.18
|
| 下载Jar包: |
|
| POM文件内容: |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.crazycake</groupId>
<artifactId>shiro-redis</artifactId>
<version>2.8.18</version>
<packaging>jar</packaging>
<name>shiro-redis</name>
<description>shiro only provide the support of ehcache and concurrentHashMap. Here is an implement of redis cache can be used by shiro. Hope it will help you!</description>
<url>https://github.com/alexxiyang/shiro-redis</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit>4.11</junit>
<slf4j>1.7.5</slf4j>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.2</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
<version>1.2.3</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.2</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<developers>
<developer>
<id>alexxiyang</id>
<name>Alex Yang</name>
<email>alexxiyang@gmail.com</email>
<timezone>GMT-7</timezone>
<organizationUrl>https://github.com/alexxiyang</organizationUrl>
<roles>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/alexxiyang/shiro-redis.git</connection>
<developerConnection>scm:git:https://github.com/alexxiyang/shiro-redis.git</developerConnection>
<url>https://github.com/alexxiyang/shiro-redis.git</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<finalName>shiro-redis</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<compilerArgument>-nowarn</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<properties>
<gpg.keyname>4DD0EC63</gpg.keyname> <!-- GPG Key ID to use for signing -->
<release.username>alexxiyang</release.username>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.crazycake.shiro.BaseRedisManager.class
org.crazycake.shiro.IRedisManager.class
org.crazycake.shiro.ObjectSerializer.class
org.crazycake.shiro.RedisCache.class
org.crazycake.shiro.RedisCacheManager.class
org.crazycake.shiro.RedisManager.class
org.crazycake.shiro.RedisSentinelManager.class
org.crazycake.shiro.RedisSerializer.class
org.crazycake.shiro.RedisSessionDAO.class
org.crazycake.shiro.SerializationException.class
org.crazycake.shiro.SessionInMemory.class
org.crazycake.shiro.StringSerializer.class
META-INF/maven/org.crazycake/shiro-redis/pom.xml
META-INF/maven/org.crazycake/shiro-redis/pom.properties
|
| 依赖Jar: |
jedis-2.9.0.jar
/redis.clients/jedis/2.9.0
查看jedis所有版本文件
slf4j-api-1.7.2.jar
/org.slf4j/slf4j-api/1.7.2
查看slf4j-api所有版本文件
shiro-core-1.2.3.jar
/org.apache.shiro/shiro-core/1.2.3
查看shiro-core所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
slf4j-simple-1.7.7.jar
/org.slf4j/slf4j-simple/1.7.7
查看slf4j-simple所有版本文件
commons-logging-1.1.2.jar
/commons-logging/commons-logging/1.1.2
查看commons-logging所有版本文件
mockito-all-1.9.5.jar
/org.mockito/mockito-all/1.9.5
查看mockito-all所有版本文件
|