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



Clound SSD Virtual Server

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

ตอนที่ 8 : How to use Java (JSP) Add Entity to a Table Storage - บันทึกข้อมูลลงตาราง บทความที่สองของ Windows Azure Table Storage กับ Java (JSP) จะเป็นตัวอย่างเกี่ยวกับการ Insert ข้อมูลลงใน Table Storage ของ Windows Azure ซึ่งจะเหมือนกับการ Insert ข้อมูลแบบ SQL ปกติ เพียงแต่เราจะใช้การ Insert ผ่าน Library ด้วยการเขียนคำสั่งเพียงง่าย ๆ ก็สามารถที่จะ Insert ลงใน Table ได้ทันที

How to use Java (JSP) Add Entity to a Table Storage

ตาราง Table ที่อยู่บน Windows Azure


ก่อนอื่นเราจะต้องสร้าง Class สำหรับเป็น Model ในการเชื่อมต่อระหว่า Table Storage กับ Java ด้วยการสร้าง Class แล้ว extends ไปยัง TableServiceEntity

How to use Java (JSP) Add Entity to a Table Storage

ขั้นตอนการสร้าง Package คลิกขวาที่ Project -> New -> Package

How to use Java (JSP) Add Entity to a Table Storage

ตั้งชื่อเป็น com.java.myapp








How to use Java (JSP) Add Entity to a Table Storage

ได้ Package ชื่อว่า com.java.myapp

How to use Java (JSP) Add Entity to a Table Storage

คลิกขวาที่ Package -> New -> Class

How to use Java (JSP) Add Entity to a Table Storage

ตั้งชื่อ Class ว่า CustomerEntity (ควรจะตั้งชื่อ Class ให้ชื่อเดียวกับชื่อของ Table)

How to use Java (JSP) Add Entity to a Table Storage

เราจะได้ไฟล์ Class ชื่อว่า CustomerEntity.java

CustomerEntity.java
package com.java.myapp;

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

public class CustomerEntity extends TableServiceEntity {
    public CustomerEntity(String pKey, String rKey) {
        this.partitionKey = pKey;
        this.rowKey = rKey;
    }

    public CustomerEntity() { }

    String CustomerID;
    String Name;
    String Email;
    String CountryCode;
    String Budget;
    String Used;

    public String getCustomerID() {
        return this.CustomerID;
    }
    public void setCustomerID(String sCustomerID) {
        this.CustomerID = sCustomerID;
    }
    
    public String getName() {
        return this.Name;
    }
    public void setName(String sName) {
        this.Name = sName;
    }
    
    public String getEmail() {
        return this.Email;
    }
    public void setEmail(String sEmail) {
        this.Email = sEmail;
    }
    
    public String getCountryCode() {
        return this.CountryCode;
    }
    public void setCountryCode(String sCountryCode) {
        this.CountryCode = sCountryCode;
    }
    
    public String getBudget() {
        return this.Budget;
    }
    public void setBudget(String sBudget) {
        this.Budget = sBudget;
    }
    
    public String getUsed() {
        return this.Used;
    }
    public void setUsed(String sUsed) {
        this.Used = sUsed;
    } 


}


ใน Table นี้จะประกอบด้วยฟิวด์

- CustomerID
- Name
- Email
- CountryCode
- Budget
- Used

แต่เราจะเห้ฯว่าจะมีชื่อ partitionKey และ rowKey ตัวนี้เปรียบเหสมือน Key ของ Table

Syntax การ Insert ข้อมูล
    CustomerEntity newEntiry = new CustomerEntity("myCustomer", "C001");
    newEntiry.setCustomerID("C001");
    newEntiry.setName("Win Weerachai");
    newEntiry.setEmail("[email protected]");
    newEntiry.setCountryCode("TH");
    newEntiry.setBudget("1000000.00");
    newEntiry.setUsed("600000.00");

จัดเก็บไว้ใน Table ชื่อว่า customer จะสังเกตุว่ามีการ Insert ข้อมูลที่เป็น PartitionKey และ RowKey ซึ่งตัวนี้เปรียบเหสมือน Key ของ Rows ควรเป็นค่าที่ไม่ซ้ำกัน ใช้ในการอ้างอิงถึง Key และ Index ทำให้สามารถอ่านข้อมูลได้อย่างรวดเร็ว

Example 1 เขียน Java (JSP) เพื่บันทึกข้อมูลลงใน Table Storage ของ Windows Azure

index.jsp
<%@ page import="com.microsoft.windowsazure.services.core.storage.*" %>
<%@ page import="com.microsoft.windowsazure.services.table.client.*" %>
<%@ page import="com.microsoft.windowsazure.services.table.client.TableQuery.*" %>
<%@ page import="com.java.myapp.CustomerEntity" %>

<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 table client.
    CloudTableClient tableClient = storageAccount.createCloudTableClient();

    // Create a new customer entity.
    CustomerEntity newEntiry = new CustomerEntity("myCustomer", "C001");
    newEntiry.setCustomerID("C001");
    newEntiry.setName("Win Weerachai");
    newEntiry.setEmail("[email protected]");
    newEntiry.setCountryCode("TH");
    newEntiry.setBudget("1000000.00");
    newEntiry.setUsed("600000.00");

    // Create an operation to add the new customer to the customer table.
    TableOperation insertCustomer = TableOperation.insert(newEntiry);

    // Submit the operation to the table service.
    tableClient.execute("customer", insertCustomer);
	
	
    out.print("Storage Table 'customer' has been inserted.");
    
	%>
</body>
</html>


Screenshot

How to use Java (JSP) Add Entity to a Table Storage

แสดงการ Insert ข้อมูล

How to use Java (JSP) Add Entity to a Table Storage

ดูผ่านโปรแกรม Azure Storage Explorer เลือก Edit

How to use Java (JSP) Add Entity to a Table Storage

แสดงข้อมูลที่ถูก Insert ลงไปใน Table








Example 2 เขียน Java (JSP) สร้าง Form สำหรับ Insert ข้อมูลลงใน Azure Table Storage

index.jsp
<html>
<head>
<title>ThaiCreate.Com</title>
</head>
<body>
<form action="save.jsp" name="frmAdd" method="post">
<table width="600" border="1">
  <tr>
    <th width="91"> <div align="center">CustomerID </div></th>
    <th width="160"> <div align="center">Name </div></th>
    <th width="198"> <div align="center">Email </div></th>
    <th width="97"> <div align="center">CountryCode </div></th>
    <th width="70"> <div align="center">Budget </div></th>
    <th width="70"> <div align="center">Used </div></th>
  </tr>
  <tr>
    <td><div align="center"><input type="text" name="txtCustomerID" size="5"></div></td>
    <td><input type="text" name="txtName" size="20"></td>
    <td><input type="text" name="txtEmail" size="20"></td>
    <td><div align="center"><input type="text" name="txtCountryCode" size="2"></div></td>
    <td align="right"><input type="text" name="txtBudget" size="5"></td>
    <td align="right"><input type="text" name="txtUsed" size="5"></td>
  </tr>
  </table>
  <input type="submit" name="submit" value="submit">
  </form>
</body>
</html>

save.jsp
<%@ page import="com.microsoft.windowsazure.services.core.storage.*" %>
<%@ page import="com.microsoft.windowsazure.services.table.client.*" %>
<%@ page import="com.microsoft.windowsazure.services.table.client.TableQuery.*" %>
<%@ page import="com.java.myapp.CustomerEntity" %>

<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 table client.
    CloudTableClient tableClient = storageAccount.createCloudTableClient();
	
 	// Get Param
 	String strCustomerID = request.getParameter("txtCustomerID");
    String strName = request.getParameter("txtName");
    String strEmail = request.getParameter("txtEmail");
    String strCountryCode = request.getParameter("txtCountryCode");
    String strBuget = request.getParameter("txtBudget");
    String strUsed = request.getParameter("txtUsed");
    
    // Create a new customer entity.
    CustomerEntity newEntity = new CustomerEntity("myCustomer", strCustomerID);
    newEntity.setCustomerID(strCustomerID);
    newEntity.setName(strName);
    newEntity.setEmail(strEmail);
    newEntity.setCountryCode(strCountryCode);
    newEntity.setBudget(strBuget);
    newEntity.setUsed(strUsed);

    // Create an operation to add the new customer to the customer table.
    TableOperation insertCustomer = TableOperation.insert(newEntity);

    // Submit the operation to the table service.
    tableClient.execute("customer", insertCustomer);
	
	
    out.print("Storage Table 'customer' has been inserted.");
    
	%>
</body>
</html>


How to use Java (JSP) Add Entity to a Table Storage

แสดง Form สำหรับ Insert ข้อมูล ซึ่งจะได้ผลลอัพธ์เดียวกับตัวอย่างแรก



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

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


   
Share


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


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2013-11-30 08:27:55 / 2017-03-24 14:20:16
  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 :

 
ตอนที่ 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 :

 
ตอนที่ 13 : How to use Java (JSP) Create a message Queue - สร้างคิวใหม่
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 02
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 อัตราราคา คลิกที่นี่