标签:odi scope end mod xmlns jar pil AC 1.0
一:介绍
1.Jedis的官网
2.使用
这个可以从上面的连接进入github。
https://github.com/xetorthio/jedis
3.使用方式
或者使用jar包,不过这里我使用官网推荐的maven管理方式。
二:验证是否可以连接主机
1.cmd下
telnet 192.168.140.121 6379
2.
三:验证项目
1.pom文件
1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 5 <modelVersion>4.0.0</modelVersion> 6 7 <groupId>top.redis.it</groupId> 8 <artifactId>redisTest</artifactId> 9 <version>1.0-SNAPSHOT</version> 10 11 <dependencies> 12 <dependency> 13 <groupId>redis.clients</groupId> 14 <artifactId>jedis</artifactId> 15 <version>2.9.0</version> 16 <type>jar</type> 17 <scope>compile</scope> 18 </dependency> 19 </dependencies> 20 21 </project>
2.出现了2个jar
3.
标签:odi scope end mod xmlns jar pil AC 1.0
原文地址:https://www.cnblogs.com/juncaoit/p/8824794.html