eclipse development with microsoft azure

Post on 05-Dec-2014

368 Views

Category:

Technology

1 Downloads

Preview:

Click to see full reader

DESCRIPTION

This is a presentation from EclipseCon 2013. I covered how to code in the cloud, for the cloud with Eclipse. Highlights include an introduction to the Java Developer Center for Azure, the Azure SDK for Java , our Plugin for Eclipse, and other tools and materials we’ve developed to make life easier for Eclipse developers. There were lots of working examples showing tips and tricks for building, deploying, connecting, and maintaining Java applications and multi-tier Web applications that access data, servers and services on Azure, including Linux Virtual Machines.

TRANSCRIPT

Flexible

http://www.windowsazure.com/en-us/develop/overview/

distributed cache

> 500 miles

import com.microsoft.windowsazure.services.core.storage.*;

import com.microsoft.windowsazure.services.blob.client.*;

// Define the connection-string with your values

public static final String storageConnectionString =

"DefaultEndpointsProtocol=http;" +

"AccountName=your_storage_account;" +

"AccountKey=your_storage_account_key";

CloudBlobContainer container =

blobClient.getContainerReference("mycontainer");

// Create the container if it does not exist

container.createIfNotExist();

for (ListBlobItem blobItem :

container.listBlobs()) {

System.out.println(blobItem.getUri()); }

http://www.windowsazure.com/en-us/develop/overview/

http://www.windowsazure.com/en-us/pricing/free-trial/

http://channel9.msdn.com/Events/WindowsAzureConf/2012/KEY01

Sign up for a free trial

Learn more about the

latest features

top related