Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,025

HOME > Windows Azure > Windows Azure (Storage) and Java Application > ตอนที่ 13 : How to use Java (JSP) Create a message Queue - สร้างคิวใหม่



Clound SSD Virtual Server

ตอนที่ 13 : How to use Java (JSP) Create a message Queue - สร้างคิวใหม่

ตอนที่ 13 : How to use Java (JSP) Create a message Queue - สร้างคิวใหม่ บทความนี้จะเป็นตัวอย่างการเขียน Java (JSP) กับ Queue Service Storage ของ Windows Azure โดยจะยกตัวอย่างขึ้นมา 2 ตัวอย่าง คือการใช้ JSP กับ Azure Jar library เพื่อสร้าง Message Queue และการอ่านจำนวน Queue ทั้งหมด

Syntax การสร้าง Queue
    // Retrieve a reference to a queue
    CloudQueue queue = queueClient.getQueueReference("myqueue");

    // Create the queue if it doesn't already exist
    queue.createIfNotExist();

    // Create a message and add it to the queue
    CloudQueueMessage message = new CloudQueueMessage("Hello World! 1");
    queue.addMessage(message);

สร้าง Queue จัดเก็บไว้ใน myqueue ซึ่งจะประกอบด้วยหลาย ๆ Queue

Syntax การอ่านจำนวน Queue ทั้งหมด
 	// Retrieve a reference to a queue
    CloudQueue queue = queueClient.getQueueReference("myqueue");

    // Download the approximate message count from the server
    queue.downloadAttributes();

    // Retrieve the newly cached approximate message count
    long cachedMessageCount = queue.getApproximateMessageCount();
	
    out.print(cachedMessageCount);


How to use Java (JSP) Create a message Queue

กลุ่มของ Queue ชื่อว่า myqueue ในตอนนี้ยังไม่มีรายการใน Queue นี้

Example 1 เขียน Java (JSP) เพื่อสร้าง Queue ไปยัง Queue Storage บน Windows Azure

index.jsp
<%@ page import="com.microsoft.windowsazure.services.core.storage.*" %>
<%@ page import="com.microsoft.windowsazure.services.queue.client.*" %>

<html>
<head>
	<title>ThaiCreate.Com Azure Tutorial</title>
</head>
<body>
	<%
	
	String storageConnectionString = 
    "DefaultEndpointsProtocol=http;" + 
    "AccountName=[yourAccount];" + 
    "AccountKey=[yourKey]";
    
 	// Retrieve storage account from connection-string
    CloudStorageAccount storageAccount = CloudStorageAccount.parse(storageConnectionString);

 	// Create the queue client
    CloudQueueClient queueClient = storageAccount.createCloudQueueClient();

    // Retrieve a reference to a queue
    CloudQueue queue = queueClient.getQueueReference("myqueue");

    // Create the queue if it doesn't already exist
    queue.createIfNotExist();

    // Create a message and add it to the queue
    CloudQueueMessage message = new CloudQueueMessage("Hello World! 1");
    queue.addMessage(message);
	
    out.print("Queue message has been added.");
    
	%>
</body>
</html>

ในตัวอย่างนี้จะสร้าง Message Queue ชื่อว่า Hello Word! 1

Screenshot

How to use Java (JSP) Create a message Queue

แสดงการทำงาน

How to use Java (JSP) Create a message Queue

Queue ถูก Insert เรียบร้อย

How to use Java (JSP) Create a message Queue

จาก Code นี้ทดสอบเพิ่มไปซะ 4 คิว เช่น Hello Word! 1 , Hello Word! 2 , Hello Word! 3 และ Hello Word! 4








Example 2 เขียน Java (JSP) เพื่อทำการอ่านจำนวน Queue ทั้งหมดที่อยู่บน Queue Storage บน Windows Azure

How to use Java (JSP) Create a message Queue

ชื่อ Queue ว่า "myqueue" มี Queue Message ทั้งหมด 4 Queue

index.jsp
<%@ page import="com.microsoft.windowsazure.services.core.storage.*" %>
<%@ page import="com.microsoft.windowsazure.services.queue.client.*" %>

<html>
<head>
	<title>ThaiCreate.Com Azure Tutorial</title>
</head>
<body>
	<%
	
	String storageConnectionString = 
    "DefaultEndpointsProtocol=http;" + 
    "AccountName=[yourAccount];" + 
    "AccountKey=[yourKey]";
    
 	// Retrieve storage account from connection-string
    CloudStorageAccount storageAccount = CloudStorageAccount.parse(storageConnectionString);

 	// Create the queue client
    CloudQueueClient queueClient = storageAccount.createCloudQueueClient();

 	// Retrieve a reference to a queue
    CloudQueue queue = queueClient.getQueueReference("myqueue");

    // Download the approximate message count from the server
    queue.downloadAttributes();

    // Retrieve the newly cached approximate message count
    long cachedMessageCount = queue.getApproximateMessageCount();
	
    out.print(cachedMessageCount);
    
	%>
</body>
</html>


How to use Java (JSP) Create a message Queue

แสดงจำนวน Queue ที่อยู่ใน "myqueue"

จากบทความนี้เราจะได้รู้วิธีการสร้าง Queue ด้วย Java (JSP) แบบง่าย ๆ ซึ่งในบทความถัดไปเราจะเขียน Java (JSP) เพื่ออ่าน Queue ที่จะทำงานล่าสุด








บทความที่เกี่ยวข้อง

บทความถัดไปที่แนะนำให้อ่าน


   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2013-11-30 08:29:14 / 2017-03-24 14:32:17
  Download : No files
 Sponsored Links / Related

 
ตอนที่ 1 : รู้จักกับ Windows Azure และ Azure Java SDK สำหรับภาษา Java
Rating :

 
ตอนที่ 2 : Config Eclipse กับ Apache Tomcat ไว้เขียน JSP กับ Windows Azure
Rating :

 
ตอนที่ 3 : รู้จักกับ Blob Storage และการเขียนร่วมกับภาษา Azure for Java Application
Rating :

 
ตอนที่ 4 : How to use Java (JSP) Upload file to Blob การอัพโหลดไฟล์ลงใน Blob
Rating :

 
ตอนที่ 5 : How to use Java (JSP) List the Blobs การแสดงรายการไฟล์จาก Blob
Rating :

 
ตอนที่ 6 : How to use Java (JSP) Delete Blob การลบรายการไฟล์บน Blob
Rating :

 
ตอนที่ 7 : รู้จักกับ Table Storage Service และการเขียนร่วมกับภาษา Java Application
Rating :

 
ตอนที่ 8 : How to use Java (JSP) Add Entity to a Table Storage - บันทึกข้อมูลลงตาราง
Rating :

 
ตอนที่ 9 : How to use Java (JSP) Retrieve Entity from Table Storage - อ่านข้อมูลในตาราง
Rating :

 
ตอนที่ 10 : How to use Java (JSP) Update Entity in Table Storage - แก้ไขข้อมูลในตาราง
Rating :

 
ตอนที่ 11 : How to use Java (JSP) Delete Entity in Table Storage - ลบข้อมูลในตาราง
Rating :

 
ตอนที่ 12 : รู้จักกับ Queue Storage และการเขียนร่วมกับภาษา Java Application
Rating :

 
ตอนที่ 14 : How to use Java (JSP) Peek at the next message - อ่านคิวถัดไป
Rating :

 
ตอนที่ 15 : How to use Java (JSP) De-queue the next messag - ขยับไปยังคิวถัดไป
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่