抢占先机
VMware 提供培训和认证,以加速您的进步。
了解更多我很高兴代表 Spring、Apache Geode 和 Pivotal GemFire 社区宣布发布Spring Boot for Apache Geode & Pivotal GemFire (SBDG) 1.0.0.M4
。
特别感谢 @starbuxman 在 SpringOne Platform 2018 之后提供的宝贵反馈。 并且,如果您还没有看过 Josh 关于 Apache 的 Spring Tip 视频,请查看一下。
在一些小的更新中,Milestone 4 添加了以下新功能
使用 Spring Boot 的配置处理器和 SBDG 提供的 @ConfigurationProperties
类支持外部化配置(有关更多详细信息,请阅读此处)。 在 STS 或 IJ Enterprise 版本中,开发人员将拥有自动完成和内容辅助的额外便利。
现在可以使用 spring.application.name
属性命名 GemFire/Geode 节点。
GemFire/Geode Spring Boot 启动器现在包含 Spring Shell 作为运行时依赖项,这在启用和使用 GemFire/Geode 的管理服务时非常方便。
提供了对 Spring Cloud Commons 中 问题的解决方法。
有关完整的更改列表,请参见更新日志。
您可以从 Spring libs-milestone
存储库中获取位。
Maven
<repositories>
<repository>
<id>spring-libs-milestone</id>
<name>Spring Milestone Maven Repository</name>
<url>https://repo.spring.io/libs-milestone</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.springframework.geode</groupId>
<artifactId>spring-geode-starter</artifactId>
<version>1.0.0.M4</version>
</dependency>
</dependencies>
Gradle
repository {
maven { url "https://repo.spring.io/libs-milestone" }
}
dependencies {
compile 'org.springframework.geode:spring-geode-starter:1.0.0.M4'
}
要从 Apache Geode 切换到 Pivotal GemFire,只需将 Spring Boot 启动器从 spring-geode-starter
更改为 spring-gemfire-starter
。
接下来是 SBDG 1.0.0.RC1
。 在此版本中,我们将添加示例,演示如何在 Spring 上下文中使用 Spring Boot 有效地使用 Apache Geode 或 Pivotal GemFire。 我们将为最终 GA 做好准备,加强文档的编写,以确保用户在他们的所有 UC 中都成功使用 SBDG。
1.0.0.GA
将在 RC1 之后很快推出,1.1.0.M1
也会紧随其后,它将把 SBDG 重新构建在 Spring Boot 2.1、Spring Framework 5.1 和 Spring Data Lovelace 上。
与往常一样,我们感谢并欢迎您的反馈。 请尝试一下此版本,并告诉我们您是否有任何想法、问题或建议。
问题 | PR | StackOverflow