TAILIEUCHUNG - Bắt đầu với IBM Websphere smash - p 18

152 Chapter 7 REST Programming // PUT (Update) def onUpdate() { // Get the ID of car to update, this param is fixed def carId = [] {"Update starting for: ${carId}"} // The data to update the record with could be in any param def carData = [] // Update data for existing car updateCar( carData ) // Assume this method exists // We don't need to return anything on this update. = } // DELETE def onDelete() { // Get the ID of car to delete, this param is fixed def carId = [] {"Delete attempted for: ${carId}"}. | 152 Chapter 7 REST Programming PUT Update def onUpdate Get the ID of car to update this param is fixed def carld Update starting for carId The data to update the record with could be in any param def carData Update data for existing car updateCar carData Assume this method exists We don t need to return anything on this update. DELETE def onDelete Get the ID of car to delete this param is fixed def carld Delete attempted for carId Lets not allow deletion of Cars As you can see this is easy to grasp. Each REST method that your resource supports is directly mapped to one of these methods. For methods that expect a specific identifier such as onRetrieve you can see that WebSphere sMash has the convention of using the entity name appended with Id in our example each specific reference is found in the request parameters as carId. This will become more important when we discuss binding resources later in the chapter. Creating a PHP Resource Handler Creating a PHP handler is similar to the Groovy handler. It s a matter of placing a php file within the app resources virtual directory where the filename is directly mapped to the resource it represents. The contents of the PHP resource files can be defined in two different ways depending on your preference. In Listing we have a basic PHP script that represents the same car resource as we defined in Groovy. One issue to observe is that the same GET request is used for list and singleton reads. You need to test the event _name variable to determine the proper intent of the request as shown in the listing. Download from Creating a PHP Resource Handler 153 Listing app resources Car Resource Handler in PHP php method zget request method switch method GET Singleton and Collection case GET if zget event _name list

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.