search

Home  >  Q&A  >  body text

java - pom.xml

pom.xml中添加的依赖

    <dependency>
        <groupId>net.spy</groupId>
        <artifactId>spymemcached</artifactId>
        <version>2.9.0</version>
    </dependency>

有什么作用??

高洛峰高洛峰2887 days ago301

reply all(2)I'll reply

  • PHPz

    PHPz2017-04-17 17:43:06

    Spymemcached is an asynchronous, single-threaded Memcached client developed in Java.
    Add this dependency to indicate that the project needs to use this function.

    Reference: https://github.com/springside/springside...
    http://www.oschina.net/p/spymemcached/

    reply
    0
  • 迷茫

    迷茫2017-04-17 17:43:06

    Comparison with ordinary Java Project:
    Equivalent to
    1. Create a new lib folder
    2. Import the 2.9.0 version jar package of spymemcached and all the dependencies of the version of the project
    3. Add to classpath

    reply
    0
  • Cancelreply