内容简介:Spring Session BOM Apple-SR2 已发布,此版本包含对核心模块的更新,并增加了对 Spring Session for Apache Geode 的支持。 使用方法 Maven <dependencyManagement> <dependencies> <dependency> ...
Spring Session BOM Apple-SR2
已发布,此版本包含对核心模块的更新,并增加了对 Spring Session for Apache Geode 的支持。
使用方法
Maven
<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.session</groupId> <artifactId>spring-session-bom</artifactId> <version>Apple-SR2</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies></dependencyManagement><dependencies> <dependency> <groupId>org.springframework.session</groupId> <artifactId>spring-session-data-redis</artifactId> </dependency> ...</dependencies>
Gradle
plugins { id 'io.spring.dependency-management' version '1.0.5.RELEASE' } dependencyManagement { imports { mavenBom 'org.springframework.session:spring-session-bom:Apple-SR2' } } dependencies { compile 'org.springframework.session:spring-session-data-redis' ... }
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
编程原本
Alexander Stepanov、Paul McJones / 裘宗燕 / 机械工业出版社华章公司 / 2012-1-10 / 59.00元
本书提供了有关编程的一种与众不同的理解。其主旨是,实际的编程也应像其他科学和工程领域一样基于坚实的数学基础。本书展示了在实际编程语言(如C++)中实现的算法如何在最一般的数学背景中操作。例如,如何定义快速求幂算法,使之能使用任何可交换运算。使用抽象算法将能得到更高效、可靠、安全和经济的软件。 这不是一本很容易读的书,它也不是能提升你的编程技能的秘诀和技巧汇编。本书的价值是更根本性的,其终极目......一起来看看 《编程原本》 这本书的介绍吧!