本指南演练了使用阿帕奇大地的数据管理系统,用于缓存应用程序代码中的某些调用。
创新互联服务项目包括张湾网站建设、张湾网站制作、张湾网页制作以及张湾网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,张湾网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到张湾省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!
有关Apache Geode概念和从Apache Geode访问数据的更多一般知识,请阅读指南,使用 Apache Geode 访问数据。
您将构建一个服务,该服务从CloudFoundry托管的报价服务请求报价,并将其缓存在Apache Geode中。
然后,您将看到再次获取相同的报价消除了对报价服务的昂贵调用,因为Spring的缓存抽象由Apache Geode支持,将用于缓存结果,给定相同的请求。
报价服务位于:
https://quoters.apps.pcfone.io。
报价服务具有以下 API:
GET /api - get all quotes
GET /api/random - get random quote
GET /api/{id} - get specific quote
像大多数春天一样入门指南,您可以从头开始并完成每个步骤,也可以绕过您已经熟悉的基本设置步骤。无论哪种方式,你最终都会得到工作代码。
要从头开始,请转到从 Spring Initializr 开始。
要跳过基础知识,请执行以下操作:
完成后,您可以根据 中的代码检查结果。
gs-caching-gemfire/complete。
对于所有Spring应用程序,您应该从Spring Initializr.Spring Initializr提供了一种快速的方法来提取应用程序所需的所有依赖项,并为您完成许多设置。此示例需要"Apache Geode 的 Spring for Apache Geode"依赖项。
以下清单显示了使用 Maven 时的示例文件:pom.xml。
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
org.springframework.boot
spring-boot-starter-parent
2.5.6
org.springframework
gs-caching-gemfire
0.1.0
1.2.0.RELEASE
javax.cache
cache-api
runtime
org.springframework.boot
spring-boot-starter
org.springframework.data
spring-data-geode
com.fasterxml.jackson.core
jackson-databind
org.projectlombok
lombok
org.springframework.shell
spring-shell
${spring-shell.version}
runtime
org.springframework.boot
spring-boot-maven-plugin
以下清单显示了使用 Gradle 时的示例文件:build.gradle。
plugins {
id 'org.springframework.boot' version '2.5.6'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'io.freefair.lombok' version '6.3.0'
id 'java'
}
apply plugin: 'eclipse'
apply plugin: 'idea'
group = "org.springframework"
version = "0.1.0"
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation "org.springframework.boot:spring-boot-starter"
implementation "org.springframework.data:spring-data-geode"
implementation "com.fasterxml.jackson.core:jackson-databind"
implementation "org.projectlombok:lombok"
runtimeOnly "javax.cache:cache-api"
runtimeOnly "org.springframework.shell:spring-shell:1.2.0.RELEASE"
}
现在,您已经设置了项目并生成系统,您可以专注于定义捕获从 Quote 服务提取引号(数据)所需的位所需的域对象。
src/main/java/hello/Quote.java。
package hello;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.springframework.util.ObjectUtils;
import lombok.Data;
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
@SuppressWarnings("unused")
public class Quote {
private Long id;
private String quote;
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Quote)) {
return false;
}
Quote that = (Quote) obj;
return ObjectUtils.nullSafeEquals(this.getId(), that.getId());
}
@Override
public int hashCode() {
int hashValue = 17;
hashValue = 37 * hashValue + ObjectUtils.nullSafeHashCode(getId());
return hashValue;
}
@Override
public String toString() {
return getQuote();
}
}COPY
域类具有 和 属性。这些是您将在本指南中进一步收集的两个主要属性。通过使用QuoteidquoteQuote龙目岛项目。
此外,还会捕获报价服务在报价请求中发送的响应的整个有效负载。它包括请求的(又名 )以及 .此类还使用
QuoteQuoteResponsestatustypequote龙目岛项目以简化实现。
src/main/java/hello/QuoteResponse.java。
package hello;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class QuoteResponse {
@JsonProperty("value")
private Quote quote;
@JsonProperty("type")
private String status;
@Override
public String toString() {
return String.format("{ @type = %1$s, quote = '%2$s', status = %3$s }",
getClass().getName(), getQuote(), getStatus());
}
}COPY
报价服务的典型响应如下所示:
{
"type":"success",
"value": {
"id":1,
"quote":"Working with Spring Boot is like pair-programming with the Spring developers."
}
}COPY
这两个类都标有 。这意味着即使可以检索其他 JSON 属性,它们也会被忽略。@JsonIgnoreProperties(ignoreUnknown=true)。
下一步是创建一个查询报价的服务类。
src/main/java/hello/QuoteService.java。
package hello;
import java.util.Collections;
import java.util.Map;
import java.util.Optional;
import org.springframework.cache.annotation.CachePut;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
@SuppressWarnings("unused")
@Service
public class QuoteService {
protected static final String ID_BASED_QUOTE_SERVICE_URL = "https://quoters.apps.pcfone.io/api/{id}";
protected static final String RANDOM_QUOTE_SERVICE_URL = "https://quoters.apps.pcfone.io/api/random";
private volatile boolean cacheMiss = false;
private final RestTemplate quoteServiceTemplate = new RestTemplate();
/**
* Determines whether the previous service method invocation resulted in a cache miss.
*
* @return a boolean value indicating whether the previous service method invocation resulted in a cache miss.
*/
public boolean isCacheMiss() {
boolean cacheMiss = this.cacheMiss;
this.cacheMiss = false;
return cacheMiss;
}
protected void setCacheMiss() {
this.cacheMiss = true;
}
/**
* Requests a quote with the given identifier.
*
* @param id the identifier of the {@link Quote} to request.
* @return a {@link Quote} with the given ID.
*/
@Cacheable("Quotes")
public Quote requestQuote(Long id) {
setCacheMiss();
return requestQuote(ID_BASED_QUOTE_SERVICE_URL, Collections.singletonMap("id", id));
}
/**
* Requests a random quote.
*
* @return a random {@link Quote}.
*/
@CachePut(cacheNames = "Quotes", key = "#result.id")
public Quote requestRandomQuote() {
setCacheMiss();
return requestQuote(RANDOM_QUOTE_SERVICE_URL);
}
protected Quote requestQuote(String URL) {
return requestQuote(URL, Collections.emptyMap());
}
protected Quote requestQuote(String URL, MapurlVariables) {
return Optional.ofNullable(this.quoteServiceTemplate.getForObject(URL, QuoteResponse.class, urlVariables))
.map(QuoteResponse::getQuote)
.orElse(null);
}
}COPY
使用 Spring 的来查询报价服务的QuoteServiceRestTemplate应用程序接口.Quote 服务返回一个 JSON 对象,但 Spring 使用 Jackson 将数据绑定到一个对象,并最终绑定到一个对象。QuoteResponseQuote。
此服务类的关键部分是如何使用 进行注释。requestQuote@Cacheable("Quotes")Spring's Caching Abstraction截获调用 以检查服务方法是否已被调用。如果是这样,Spring的缓存抽象只返回缓存的副本。否则,Spring 将继续调用该方法,将响应存储在缓存中,然后将结果返回给调用方。requestQuote。
我们还在服务方法上使用了注释。由于从此服务方法调用返回的报价将是随机的,因此我们不知道将收到哪个报价。因此,我们不能在调用之前查阅缓存(即),但我们可以缓存调用的结果,这将对后续调用产生积极影响,假设感兴趣的报价是之前随机选择和缓存的。@CachePutrequestRandomQuoteQuotesrequestQuote(id)。
使用 SpEL 表达式 ("#result.id") 访问服务方法调用的结果,并检索要用作缓存键的 ID。您可以了解有关Spring的Cache Abstraction SpEL上下文的更多信息@CachePutQuote这里。
您必须提供缓存的名称。出于演示目的,我们将其命名为"报价",但在生产中,建议选择一个适当的描述性名称。这也意味着不同的方法可以与不同的缓存相关联。如果每个缓存具有不同的配置设置(如不同的过期或逐出策略等),这将非常有用。
稍后,当您运行代码时,您将看到运行每个调用所需的时间,并能够辨别缓存对服务响应时间的影响。这演示了缓存某些调用的价值。如果您的应用程序不断查找相同的数据,则缓存结果可以显著提高性能。
尽管 Apache Geode 缓存可以嵌入到 Web 应用程序和 WAR 文件中,但下面演示的更简单方法会创建一个独立的应用程序。您将所有内容打包到一个可执行的JAR文件中,由一个很好的旧Java方法驱动。main()。
src/main/java/hello/Application.java。
package hello;
import java.util.Optional;
import org.apache.geode.cache.client.ClientRegionShortcut;
import org.springframework.boot.ApplicationRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.data.gemfire.cache.config.EnableGemfireCaching;
import org.springframework.data.gemfire.config.annotation.ClientCacheApplication;
import org.springframework.data.gemfire.config.annotation.EnableCachingDefinedRegions;
@SpringBootApplication
@ClientCacheApplication(name = "CachingGemFireApplication")
@EnableCachingDefinedRegions(clientRegionShortcut = ClientRegionShortcut.LOCAL)
@EnableGemfireCaching
@SuppressWarnings("unused")
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
@Bean
ApplicationRunner runner(QuoteService quoteService) {
return args -> {
Quote quote = requestQuote(quoteService, 12L);
requestQuote(quoteService, quote.getId());
requestQuote(quoteService, 10L);
};
}
private Quote requestQuote(QuoteService quoteService, Long id) {
long startTime = System.currentTimeMillis();
Quote quote = Optional.ofNullable(id)
.map(quoteService::requestQuote)
.orElseGet(quoteService::requestRandomQuote);
long elapsedTime = System.currentTimeMillis();
System.out.printf("\"%1$s\"%nCache Miss [%2$s] - Elapsed Time [%3$s ms]%n", quote,
quoteService.isCacheMiss(), (elapsedTime - startTime));
return quote;
}
}COPY
@SpringBootApplication是添加以下所有内容的便利注释:
该方法使用Spring Boot的方法启动应用程序。您是否注意到没有一行 XML?也没有文件。此Web应用程序是100%纯Java,您不必处理配置任何管道或基础架构。main()SpringApplication.run()web.xml。
配置的顶部是一个至关重要的注释:这将打开缓存(即使用Spring的注释进行元注释),并在后台声明其他重要的bean,以支持使用Apache Geode作为缓存提供程序的缓存。@EnableGemfireCaching@EnableCaching。
第一个 Bean 是用于访问 Quotes REST-ful Web 服务的实例。QuoteService。
另外两个用于缓存报价并执行应用程序的操作。
第一次请求报价(使用)时,会发生缓存未命中,并且将调用服务方法,从而产生明显的延迟,该延迟不会接近于零毫秒。在这种情况下,缓存由服务方法 的输入参数(即 )链接。换句话说,方法参数是缓存键。对 ID 标识的相同报价的后续请求将导致缓存命中,从而避免昂贵的服务调用。requestQuote(id)idrequestQuoteid。
出于演示目的,对 的调用被包装在一个单独的方法(类内部)中,以捕获进行服务调用的时间。这使您可以确切地查看任何一个请求需要多长时间。
QuoteServicerequestQuoteApplication。
您可以使用 Gradle 或 Maven 从命令行运行应用程序。您还可以构建一个包含所有必要依赖项、类和资源的可执行 JAR 文件并运行该文件。通过构建可执行 jar,可以轻松地在整个开发生命周期中跨不同环境等将服务作为应用程序进行交付、版本控制和部署。
如果您使用 Gradle,则可以使用 运行应用程序。或者,您可以使用 JAR 文件构建 JAR 文件,然后运行该 JAR 文件,如下所示:./gradlew bootRun./gradlew build。
java -jar build/libs/gs-caching-gemfire-0.1.0.jar
如果使用 Maven,则可以使用 运行应用程序。或者,您可以使用 JAR 文件构建 JAR 文件,然后运行该 JAR 文件,如下所示:./mvnw spring-boot:run./mvnw clean package。
java -jar target/gs-caching-gemfire-0.1.0.jar
此处描述的步骤将创建一个可运行的 JAR。您还可以构建经典 WAR 文件。
将显示日志记录输出。该服务应在几秒钟内启动并运行。
"@springboot with @springframework is pure productivity! Who said in #java one has to write double the code than in other langs? #newFavLib"
Cache Miss [true] - Elapsed Time [776 ms]
"@springboot with @springframework is pure productivity! Who said in #java one has to write double the code than in other langs? #newFavLib"
Cache Miss [false] - Elapsed Time [0 ms]
"Really loving Spring Boot, makes stand alone Spring apps easy."
Cache Miss [true] - Elapsed Time [96 ms]
从中可以看出,第一次调用报价服务以获取报价需要 776 毫秒,并导致缓存未命中。但是,请求相同报价的第二个调用花费了 0 毫秒,并导致缓存命中。这清楚地表明,第二个调用已被缓存,并且从未实际命中报价服务。但是,当对特定的非缓存报价请求进行最终服务调用时,它花费了 96 毫秒并导致缓存未命中,因为在调用之前,此新报价之前不在缓存中。
祝贺!您刚刚构建了一个服务,该服务执行了一个代价高昂的操作并对其进行了标记,以便缓存结果。
网站名称:Spring认证指南:了解如何在GemFire中缓存数据
本文网址:http://www.csdahua.cn/qtweb/news25/525375.html
网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网