- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中io.sphere.sdk.zones.ZoneDraftBuilder.description()
方法的一些代码示例,展示了ZoneDraftBuilder.description()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZoneDraftBuilder.description()
方法的具体详情如下:
包路径:io.sphere.sdk.zones.ZoneDraftBuilder
类名称:ZoneDraftBuilder
方法名:description
[英]Sets the description property of this builder.
[中]设置此生成器的“描述”属性。
代码示例来源:origin: com.commercetools.sdk.jvm.core/commercetools-models
public ZoneDraftDsl withDescription(@Nullable final String description) {
return newBuilder().description(description).build();
}
代码示例来源:origin: commercetools/commercetools-jvm-sdk
@Test
public void execution() throws Exception {
final Set<CountryCode> euAndSwissCountries = asSet(AT, BE, CH);//not complete, but you get the idea
final String key = randomKey();
final Set<Location> locations = euAndSwissCountries.stream().map(country -> Location.of(country)).collect(toSet());
final ZoneDraft draft = ZoneDraftBuilder.of("zone1",locations ).description("EU and Swiss").key(key).build();
final ZoneCreateCommand createCommand = ZoneCreateCommand.of(draft);
final Zone zone = client().executeBlocking(createCommand);
assertThat(zone.getKey()).isEqualTo(key);
//end example parsing here
client().executeBlocking(ZoneDeleteCommand.ofKey(zone.getKey(),zone.getVersion()));
}
本文整理了Java中io.sphere.sdk.zones.ZoneDraftBuilder.description()方法的一些代码示例,展示了ZoneDraftBuilder.descriptio
本文整理了Java中io.sphere.sdk.zones.ZoneDraftBuilder.key()方法的一些代码示例,展示了ZoneDraftBuilder.key()的具体用法。这些代码示例主
本文整理了Java中io.sphere.sdk.zones.ZoneDraftBuilder.build()方法的一些代码示例,展示了ZoneDraftBuilder.build()的具体用法。这些代
我是一名优秀的程序员,十分优秀!