TAILIEUCHUNG - Mastering Jakarta Struts phần 5

Chúng tôi kết luận chương này bằng cách đi bộ thông qua ứng dụng mẫu của chúng tôi. Mục tiêu của chương này là cung cấp cho bạn với một giới thiệu nhanh chóng để các thành phần của một ứng dụng Struts. | Creating an ActionMapping Extension for the wileystruts Application The Struts Framework does provide a solution for this very problem by allowing you to define properties specific to your application needs. You can define these supplementary properties by simply extending the ActionMapping class and adding n-number of action subelements and set-property elements for each additional property. Note The Struts Framework provides two extended ActionMapping classes for developer convenience. These two ActionMapping extensions and default the form bean scope to session and request respectively relieving the developer from specifically setting the ActionMapping scope attribute. Creating Custom ActionMappings Creating an ActionMapping Extension for the wileystruts Application To see how a new ActionMapping is created we will create our own ActionMapping extension that we can use to describe the Actions of our wileystruts application. The ActionMapping extension that we are going to create will allow us to turn logging on or off in our by using a single set-property element. To create an ActionMapping extension you need to perform these steps 1. Create a class that extends the class. 2. Define the additional properties that will be used to describe your Action objects. 3. Call the super method which calls the ActionMapping s default constructor at the beginning of your ActionMapping s constructor. 4. Define matching setters and getters that can be used to modify and retrieve the values of the defined properties. The source for our new WileyActionMapping is shown in Listing . Listing . package wiley import Step 1. Extend the ActionMapping class public class WileyActionMapping extends ActionMapping Step 2. Add the new properties protected boolean logResults .

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.