访问阿里云的 Jclouds 组件库 aliyun-Jclouds

码农软件 · 软件分类 · 服务框架/平台 · 2019-09-25 16:28:09

软件介绍

aliyun-Jclouds

访问阿里云服务的 Jclouds 组件库

Maven

<dependencies>
  <dependency>
    <groupId>io.github.aliyun-beta</groupId>
    <artifactId>aliyun-ecs</artifactId>
    <version>1.0.0</version>
  </dependency>
  <dependency>
    <groupId>io.github.aliyun-beta</groupId>
    <artifactId>aliyun-oss</artifactId>
    <version>1.0.0</version>
  </dependency>
  <dependency>
    <groupId>io.github.aliyun-beta</groupId>
    <artifactId>aliyun-slb</artifactId>
    <version>1.0.0</version>
  </dependency>
</dependencies>

Usage

ComputeService
ComputeService computeService;
String provider = "aliyun-ecs";
String key = "Your AccessKey";
String secret = "Your AccessKeySecret";
ComputeServiceContext context = ContextBuilder
      .newBuilder(provider)
      .credentials(key, secret)
      .buildView(ComputeServiceContext.class);
computeService = context.getComputeService();
BlobStore
BlobStore blobStore;
String provider = "aliyun-oss";
String key = "Your AccessKey";
String secret = "Your AccessKeySecret";
BlobStoreContext context = ContextBuilder
      .newBuilder(provider)
      .credentials(key, secret)
      .buildView(BlobStoreContext.class);
blobStore = context.getBlobStore();
LoadBalancerService
LoadBalancerService loadBalancerService;
String provider = "aliyun-slb";
String key = "Your AccessKey";
String secret = "Your AccessKeySecret";
LoadBalancerServiceContext context = ContextBuilder
      .newBuilder(provider)
      .credentials(key, secret)
      .buildView(LoadBalancerServiceContext.class);
loadBalancerService = context.getLoadBalancerService();

Build

mvn package -DskipTests

本文地址:https://www.codercto.com/soft/d/15382.html

Head Rush Ajax

Head Rush Ajax

Brett McLaughlin、Eric Freeman、Elisabeth Freeman / O'Reilly Media, Inc. / 2006-03-01 / USD 34.99

Ajax, or Asynchronous JavaScript and XML, is a term describing the latest rage in web development. Ajax is used to create interactive web applications with XML-based web services, and using JavaScript......一起来看看 《Head Rush Ajax》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换