版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
1、<p> Struts——an open-source MVC implementation</p><p> This article introduces Struts, a Model-View-Controller implementation that uses servlets and JavaServer Pages (JSP) technology. Struts can help
2、you control change in your Web project and promote specialization. Even if you never implement a system with Struts, you may get some ideas for your future servlets and JSP page implementation.</p><p> Intr
3、oduction</p><p> Kids in grade school put HTML pages on the Internet. However, there is a monumental difference between a grade school page and a professionally developed Web site. The page designer (or HTM
4、L developer) must understand colors, the customer, product flow, page layout, browser compatibility, image creation, JavaScript, and more. Putting a great looking site together takes a lot of work, and most Java develope
5、rs are more interested in creating a great looking object interface than a user interface. </p><p> If you have worked on a large-scale Web application, you understand the term change. Model-View-Controller
6、 (MVC) is a design pattern put together to help control change. MVC decouples interface from business logic and data. Struts is an MVC implementation that uses Servlets 2.2 and JSP 1.1 tags, from the J2EE specifications,
7、 as part of the implementation. You may never implement a system with Struts, but looking at Struts may give you some ideas on your future Servlets and JSP implementations.</p><p> Model-View-Controller (MV
8、C)</p><p> JSP tags solved only part of our problem. We still have issues with validation, flow control, and updating the state of the application. This is where MVC comes to the rescue. MVC helps resolve s
9、ome of the issues with the single module approach by dividing the problem into three categories: </p><p><b> Model</b></p><p> The model contains the core of the application's
10、functionality. The model encapsulates the state of the application. Sometimes the only functionality it contains is state. It knows nothing about the view or controller. </p><p><b> View</b><
11、/p><p> The view provides the presentation of the model. It is the look of the application. The view can access the model getters, but it has no knowledge of the setters. In addition, it knows nothing about th
12、e controller. The view should be notified when changes to the model occur. </p><p> Controller</p><p> The controller reacts to the user input. It creates and sets the model. </p><p
13、> MVC Model 2</p><p> The Web brought some unique challenges to software developers, most notably the stateless connection between the client and the server. This stateless behavior made it difficult fo
14、r the model to notify the view of changes. On the Web, the browser has to re-query the server to discover modification to the state of the application.</p><p> Another noticeable change is that the view use
15、s different technology for implementation than the model or controller. Of course, we could use Java (or PERL, C/C++ or what ever) code to generate HTML. There are several disadvantages to that approach: </p><
16、p> Java programmers should develop services, not HTML. </p><p> Changes to layout would require changes to code. </p><p> Customers of the service should be able to create pages to meet th
17、eir specific needs. </p><p> The page designer isn't able to have direct involvement in page development. </p><p> HTML embedded into code is ugly. </p><p> For the Web, the
18、classical form of MVC needed to change. Figure 1 displays the Web adaptation of MVC, also commonly known as MVC Model 2 or MVC 2. </p><p> Figure 1. MVC Model 2</p><p> Struts, an MVC 2 implem
19、entation</p><p> Struts is a set of cooperating classes, servlets, and JSP tags that make up a reusable MVC 2 design. This definition implies that Struts is a framework, rather than a library, but Struts al
20、so contains an extensive tag library and utility classes that work independently of the framework. Figure 2 displays an overview of Struts. </p><p> Figure 2. Struts view</p><p> Struts overvi
21、ew </p><p> Client browser </p><p> An HTTP request from the client browser creates an event. The Web container will respond with an HTTP response. </p><p> Controller</p>
22、<p> The Controller receives the request from the browser, and makes the decision where to send the request. With Struts, the Controller is a command design pattern implemented as a servlet. The struts-config.xml
23、file configures the Controller. </p><p> Business logic</p><p> The business logic updates the state of the model and helps control the flow of the application. With Struts this is done with a
24、n Action class as a thin wrapper to the actual business logic. </p><p> Model state</p><p> The model represents the state of the application. The business objects update the application state
25、. ActionForm bean represents the Model state at a session or request level, and not at a persistent level. The JSP file reads information from the ActionForm bean using JSP tags. </p><p><b> View</
26、b></p><p> The view is simply a JSP file. There is no flow logic, no business logic, and no model information -- just tags. Tags are one of the things that make Struts unique compared to other frameworks
27、 like Velocity. </p><p> Struts details</p><p> Displayed in Figure 3 is a stripped-down UML diagram of the org.apache.struts.action package. Figure 6 shows the minimal relationships among Act
28、ionServlet (Controller), ActionForm (Form State), and Action (Model Wrapper). </p><p> Figure 3:the relationship between ActionServlet (Controller)、 ActionForm (Form State) and Action (Model Wrapper)</p&
29、gt;<p> The ActionServlet class</p><p> Do you remember the days of function mappings? You would map some input event to a pointer to a function. If you where slick, you would place the configuratio
30、n information into a file and load the file at run time. Function pointer arrays were the good old days of structured programming in C. </p><p> Life is better now that we have Java technology, XML, J2EE, a
31、nd all that. The Struts Controller is a servlet that maps events (an event generally being an HTTP post) to classes. And guess what -- the Controller uses a configuration file so you don_t have to hard-code the values. L
32、ife changes, but stays the same. </p><p> ActionServlet is the Command part of the MVC implementation and is the core of the Framework. ActionServlet (Command) creates and uses Action, an ActionForm, and Ac
33、tionForward. As mentioned earlier, the struts-config.xml file configures the Command. During the creation of the Web project, Action and ActionForm are extended to solve the specific problem space. The file struts-config
34、.xml instructs ActionServlet on how to use the extended classes. There are several advantages to this approach: </p><p> The entire logical flow of the application is in a hierarchical text file. This makes
35、 it easier to view and understand, especially with large applications. </p><p> The page designer does not have to wade through Java code to understand the flow of the application. </p><p> Th
36、e Java developer does not need to recompile code when making flow changes. </p><p> Command functionality can be added by extending ActionServlet.</p><p> The ActionForm class </p><
37、p> ActionForm maintains the session state for the Web application. ActionForm is an abstract class that is sub-classed for each input form model. When I say input form model, I am saying ActionForm represents a gener
38、al concept of data that is set or updated by a HTML form. For instance, you may have a UserActionForm that is set by an HTML Form. The Struts framework will: </p><p> Check to see if a UserActionForm exists
39、; if not, it will create an instance of the class. </p><p> Struts will set the state of the UserActionForm using corresponding fields from the HttpServletRequest. No more dreadful request.getParameter() ca
40、lls. For instance, the Struts framework will take fname from request stream and call UserActionForm.setFname(). </p><p> The Struts framework updates the state of the UserActionForm before passing it to the
41、 business wrapper UserAction. </p><p> Before passing it to the Action class, Struts will also conduct form state validation by calling the validation() method on UserActionForm.Note: This is not always wis
42、e to do. There might be ways of using UserActionForm in other pages or business objects, where the validation might be different. Validation of the state might be better in the UserAction class. </p><p> Th
43、e UserActionForm can be maintained at a session level. </p><p><b> Notes: </b></p><p> The struts-config.xml file controls which HTML form request maps to which ActionForm. </p&
44、gt;<p> Multiple requests can be mapped UserActionForm. </p><p> UserActionForm can be mapped over multiple pages for things such as wizards. </p><p> The Action class</p><p
45、> The Action class is a wrapper around the business logic. The purpose of Action class is to translate the HttpServletRequest to the business logic. To use Action, subclass and overwrite the process() method. </p&
46、gt;<p> The ActionServlet (Command) passes the parameterized classes to ActionForm using the perform() method. Again, no more dreadful request.getParameter() calls. By the time the event gets here, the input form
47、 data (or HTML form data) has already been translated out of the request stream and into an ActionForm class. </p><p> Note: "Think thin" when extending the Action class. The Action class should c
48、ontrol the flow and not the logic of the application. By placing the business logic in a separate package or EJB, we allow flexibility and reuse.</p><p> Another way of thinking about Action class is as the
49、 Adapter design pattern. The purpose of the Action is to "Convert the interface of a class into another interface the clients expect. Adapter lets classes work together that couldn_t otherwise because of incompatibi
50、lity interface" (from Design Patterns - Elements of Reusable OO Software by Gof). The client in this instance is the ActionServlet that knows nothing about our specific business class interface. Therefore, Struts pr
51、ovides a business </p><p> The Error classes</p><p> The UML diagram (Figure 4) also included ActionError and ActionErrors. ActionError encapsulates an individual error message. ActionErrors i
52、s a container of ActionError classes that the View can access using tags. ActionErrors is Struts way of keeping up with a list of errors.</p><p> Figure 4:the relationship between Command (ActionServlet) an
53、d Model (Action)</p><p> The ActionMapping class</p><p> An incoming event is normally in the form of an HTTP request, which the servlet Container turns into an HttpServletRequest. The Control
54、ler looks at the incoming event and dispatches the request to an Action class. The struts-config.xml determines what Action class the Controller calls. The struts-config.xml configuration information is translated into a
55、 set of ActionMapping, which are put into container of ActionMappings. (If you have not noticed it, classes that end with s are containers)</p><p> The ActionMapping contains the knowledge of how a specific
56、 event maps to specific Actions. The ActionServlet (Command) passes the ActionMapping to the Action class via the perform() method. This allows Action to access the information to control flow.</p><p> Acti
57、onMappings</p><p> ActionMappings is a collection of ActionMapping objects.</p><p> Struts pros </p><p> Use of JSP tag mechanism</p><p> The tag feature promotes r
58、eusable code and abstracts Java code from the JSP file. This feature allows nice integration into JSP-based development tools that allow authoring with tags. </p><p> Tag library</p><p> Why r
59、e-invent the wheel, or a tag library? If you cannot find something you need in the library, contribute. In addition, Struts provides a starting point if you are learning JSP tag technology. </p><p> Open so
60、urce</p><p> You have all the advantages of open source, such as being able to see the code and having everyone else using the library reviewing the code. Many eyes make for great code review. </p>&
61、lt;p> Sample MVC implementation</p><p> Struts offers some insight if you want to create your own MVC implementation. </p><p> Manage the problem space</p><p> Divide and con
62、quer is a nice way of solving the problem and making the problem manageable. Of course, the sword cuts both ways. The problem is more complex and needs more management. </p><p> Struts cons </p><
63、p><b> Youth</b></p><p> Struts development is still in preliminary form. They are working toward releasing a version 1.0, but as with any 1.0 version, it does not provide all the bells and w
64、histles. </p><p><b> Change</b></p><p> The framework is undergoing a rapid amount of change. A great deal of change has occurred between Struts 0.5 and 1.0. You may want to downlo
65、ad the most current Struts nightly distributions, to avoid deprecated methods. In the last 6 months, I have seen the Struts library grow from 90K to over 270K. I had to modify my examples several times because of changes
66、 in Struts, and I am not going to guarantee my examples will work with the version of Struts you download. </p><p> Correct level of abstraction</p><p> Does Struts provide the correct level o
67、f abstraction? What is the proper level of abstraction for the page designer? That is the $64K question. Should we allow a page designer access to Java code in page development? Some frameworks like Velocity say no, and
68、provide yet another language to learn for Web development. There is some validity to limiting Java code access in UI development. Most importantly, give a page designer a little bit of Java, and he will use a lot of Java
69、. I saw this happen a</p><p> Limited scope</p><p> Struts is a Web-based MVC solution that is meant be implemented with HTML, JSP files, and servlets. </p><p> J2EE application
70、support</p><p> Struts requires a servlet container that supports JSP 1.1 and Servlet 2.2 specifications. This alone will not solve all your install issues, unless you are using Tomcat 3.2. </p><
71、p> Complexity</p><p> Separating the problem into parts introduces complexity. There is no question that some education will have to go on to understand Struts. With the constant changes occurring, this
72、 can be frustrating at times. </p><p> Future of Struts</p><p> Things change rapidly in this new age of software development. In less than 5 years, we have seen things go from cgi/perl, to IS
73、API/NSAPI, to ASP with VB, and now Java and J2EE. Sun is working hard to adapt changes to the JSP/servlet architecture, just as they have in the past with the Java language and API. You can obtain drafts of the new JSP 1
74、.2 and Servlet 2.3 specifications from the Sun Web site. Additionally, a standard tag library for JSP files is appearing.</p><p> Struts——MVC 的一種開放源碼實現</p><p> 本文介紹Struts,它是使用 servlet 和 JavaSe
75、rver Pages 技術的一種 Model-View-Controller 實現。Struts 可幫助您控制 Web 項目中的變化并提高專業(yè)化水平。盡管您可能永遠不會用 Struts 實現一個系統(tǒng),但您可以將其中的一些思想用于您以后的 servlet 和 JSP 網頁的實現中。</p><p><b> 簡介</b></p><p> 小學生也可以在因特網上發(fā)布
76、 HTML 網頁。但是,小學生的網頁和專業(yè)開發(fā)的網站有質的區(qū)別。網頁設計人員(或者 HTML 開發(fā)人員)必須理解顏色、用戶、生產流程、網頁布局、瀏覽器兼容性、圖像創(chuàng)建和 JavaScript 等等。設計漂亮的網站需要做大量的工作,大多數 Java 開發(fā)人員更注重創(chuàng)建優(yōu)美的對象接口,而不是用戶界面。JavaServer Pages (JSP) 技術為網頁設計人員和 Java 開發(fā)人員提供了一種聯系鈕帶。</p><p&
77、gt; 如果您開發(fā)過大型 Web 應用程序,您就理解 變化 這個詞的含義?!澳P?視圖-控制器”(MVC) 就是用來幫助您控制變化的一種設計模式。MVC 減弱了業(yè)務邏輯接口和數據接口之間的耦合。Struts 是一種 MVC 實現,它將 Servlet 2.2 和 JSP 1.1 標記(屬于 J2EE 規(guī)范)用作實現的一部分。盡管您可能永遠不會用 Struts 實現一個系統(tǒng),但了解一下 Struts 或許使您能將其中的一些思想用于您以后
78、的 Servlet 的 JSP 實現中。</p><p> 模型-視圖-控制器 (MVC)</p><p> JSP 標記只解決了部分問題。我們還得處理驗證、流程控制和更新應用程序的狀態(tài)等問題。這正是 MVC 發(fā)揮作用的地方。MVC 通過將問題分為三個類別來幫助解決單一模塊方法所遇到的某些問題:</p><p><b> Model(模型)</
79、b></p><p> 模型包含應用程序的核心功能。模型封裝了應用程序的狀態(tài)。有時它包含的唯一功能就是狀態(tài)。它對視圖或控制器一無所知。 </p><p><b> View(視圖)</b></p><p> 視圖提供模型的表示。它是應用程序的 外觀。視圖可以訪問模型的讀方法,但不能訪問寫方法。此外,它對控制器一無所知。當更改模型時,
80、視圖應得到通知。 </p><p> Controller(控制器)</p><p> 控制器對用戶的輸入作出反應。它創(chuàng)建并設置模型。 </p><p> MVC Model 2</p><p> Web 向軟件開發(fā)人員提出了一些特有的挑戰(zhàn),最明顯的就是客戶機和服務器的無狀態(tài)連接。這種無狀態(tài)行為使得模型很難將更改通知視圖。在 Web
81、上,為了發(fā)現對應用程序狀態(tài)的修改,瀏覽器必須重新查詢服務器。</p><p> 另一個重大變化是實現視圖所用的技術與實現模型或控制器的技術不同。當然,我們可以使用 Java(或者 PERL、C/C++ 或別的語言)代碼生成 HTML。這種方法有幾個缺點:</p><p> Java 程序員應該開發(fā)服務,而不是 HTML。 </p><p> 更改布局時需要更改
82、代碼。 </p><p> 服務的用戶應該能夠創(chuàng)建網頁來滿足它們的特定需要。 </p><p> 網頁設計人員不能直接參與網頁開發(fā)。 </p><p> 嵌在代碼中的 HTML 很難看。 </p><p> 對于 Web,需要修改標準的 MVC 形式。圖1顯示了 MVC 的 Web 改寫版,通常也稱為 MVC Model 2 或 MV
83、C 2。</p><p> 圖1. MVC Model 2</p><p> Struts,MVC 2 的一種實現</p><p> Struts 是一組相互協(xié)作的類、servlet 和 JSP 標記,它們組成一個可重用的 MVC 2 設計。這個定義表示 Struts 是一個框架,而不是一個庫,但 Struts 也包含了豐富的標記庫和獨立于該框架工作的實用程序
84、類。圖2顯示了 Struts 的一個概覽。</p><p> 圖2. Struts 概覽</p><p><b> Struts 概覽</b></p><p> Client browser(客戶瀏覽器)</p><p> 來自客戶瀏覽器的每個 HTTP 請求創(chuàng)建一個事件。Web 容器將用一個 HTTP 響應作出
85、響應。</p><p> Controller(控制器)</p><p> 控制器接收來自瀏覽器的請求,并決定將這個請求發(fā)往何處。就 Struts 而言,控制器是以 servlet 實現的一個命令設計模式。 struts-config.xml 文件配置控制器。</p><p><b> 業(yè)務邏輯</b></p><p&
86、gt; 業(yè)務邏輯更新模型的狀態(tài),并幫助控制應用程序的流程。就 Struts 而言,這是通過作為實際業(yè)務邏輯“瘦”包裝的 Action 類完成的。</p><p> Model(模型)的狀態(tài)</p><p> 模型表示應用程序的狀態(tài)。業(yè)務對象更新應用程序的狀態(tài)。ActionForm bean 在會話級或請求級表示模型的狀態(tài),而不是在持久級。JSP 文件使用 JSP 標記讀取來自 Act
87、ionForm bean 的信息。</p><p><b> View(視圖)</b></p><p> 視圖就是一個 JSP 文件。其中沒有流程邏輯,沒有業(yè)務邏輯,也沒有模型信息 -- 只有標記。標記是使 Struts 有別于其他框架(如 Velocity)的因素之一。</p><p> 詳細分析 Struts</p>&
88、lt;p> 圖3示的是 org.apache.struts.action 包的一個最簡 UML 圖。圖3顯示了 ActionServlet (Controller)、 ActionForm (Form State) 和 Action (Model Wrapper) 之間的最簡關系。</p><p> 圖3. Command (ActionServlet) 與 Model (Action & Ac
89、tionForm) 之間的關系的 UML 圖</p><p> ActionServlet 類 </p><p> 您還記得函數映射的日子嗎?在那時,您會將某些輸入事件映射到一個函數指針上。如果您對此比較熟悉,您會將配置信息放入一個文件,并在運行時加載這個文件。函數指針數組曾經是用 C 語言進行結構化編程的很好方法。</p><p> 現在好多了,我們有了 J
90、ava 技術、XML、J2EE,等等。Struts 的控制器是將事件(事件通常是 HTTP post)映射到類的一個 servlet。正如您所料 -- 控制器使用配置文件以使您不必對這些值進行硬編碼。時代變了,但方法依舊。</p><p> ActionServlet 是該 MVC 實現的 Command 部分,它是這一框架的核心。 ActionServlet (Command) 創(chuàng)建并使用 Action 、
91、ActionForm 和 ActionForward 。如前所述, struts-config.xml 文件配置該 Command。在創(chuàng)建 Web 項目時,您將擴展 Action 和 ActionForm 來解決特定的問題。文件 struts-config.xml 指示 ActionServlet 如何使用這些擴展的類。這種方法有幾個優(yōu)點: </p><p> 應用程序的整個邏輯流程都存儲在一個分層的文本文件中
92、。這使得人們更容易查看和理解它,尤其是對于大型應用程序而言。 </p><p> 網頁設計人員不必費力地閱讀 Java 代碼來理解應用程序的流程。 </p><p> Java 開發(fā)人員也不必在更改流程以后重新編譯代碼。 </p><p> 可以通過擴展 ActionServlet 來添加 Command 功能。 </p><p>
93、ActionForm 類 </p><p> ActionForm 維護 Web 應用程序的會話狀態(tài)。 ActionForm 是一個抽象類,必須為每個輸入表單模型創(chuàng)建該類的子類。當我說 輸入表單模型 時,是指 ActionForm 表示的是由 HTML 表單設置或更新的一般意義上的數據。例如,您可能有一個由 HTML 表單設置的 UserActionForm 。Struts 框架將執(zhí)行以下操作: </p&
94、gt;<p> 檢查 UserActionForm 是否存在;如果不存在,它將創(chuàng)建該類的一個實例。 </p><p> Struts 將使用 HttpServletRequest 中相應的域設置 UserActionForm 的狀態(tài)。沒有太多討厭的 request.getParameter() 調用。例如,Struts 框架將從請求流中提取 fname ,并調用 UserActionForm.s
95、etFname() 。 </p><p> Struts 框架在將 UserActionForm 傳遞給業(yè)務包裝 UserAction 之前將更新它的狀態(tài)。 </p><p> 在將它傳遞給 Action 類之前,Struts 還會對 UserActionForm 調用 validation() 方法進行表單狀態(tài)驗證。 注: 這并不總是明智之舉。別的網頁或業(yè)務可能使用 UserActi
96、onForm ,在這些地方,驗證可能有所不同。在 UserAction 類中進行狀態(tài)驗證可能更好。 </p><p> 可在會話級維護 UserActionForm 。 </p><p><b> 注:</b></p><p> struts-config.xml 文件控制 HTML 表單請求與 ActionForm 之間的映射關系。 &
97、lt;/p><p> 可將多個請求映射到 UserActionForm 。 </p><p> UserActionForm 可跨多頁進行映射,以執(zhí)行諸如向導之類的操作。 </p><p><b> Action 類 </b></p><p> Action 類是業(yè)務邏輯的一個包裝。 Action 類的用途是將 Ht
98、tpServletRequest 轉換為業(yè)務邏輯。要使用 Action ,請創(chuàng)建它的子類并覆蓋 process() 方法。 </p><p> ActionServlet (Command) 使用 perform() 方法將參數化的類傳遞給 ActionForm 。仍然沒有太多討厭的 request.getParameter() 調用。當事件進展到這一步時,輸入表單數據(或 HTML 表單數據)已被從請求流中提
99、取出來并轉移到 ActionForm 類中。 </p><p> 注:擴展 Action 類時請注意簡潔。 Action 類應該控制應用程序的流程,而不應該控制應用程序的邏輯。通過將業(yè)務邏輯放在單獨的包或 EJB 中,我們就可以提供更大的靈活性和可重用性。 </p><p> 考慮 Action 類的另一種方式是 Adapter 設計模式。 Action 的用途是“將類的接口轉換為客戶
100、機所需的另一個接口。Adapter 使類能夠協(xié)同工作,如果沒有 Adapter,則這些類會因為不兼容的接口而無法協(xié)同工作?!保ㄕ?Gof 所著的 Design Patterns - Elements of Reusable OO Software )。本例中的客戶機是 ActionServlet ,它對我們的具體業(yè)務類接口一無所知。因此,Struts 提供了它能夠理解的一個業(yè)務接口,即 Action 。通過擴展 Action ,我們使
101、得我們的業(yè)務接口與 Struts 業(yè)務接口保持兼容。(一個有趣的發(fā)現是, Action 是類而不是接口)。 Action 開始為一個接口,后來卻變成了一個類。真是金無足赤。) </p><p><b> Error 類 </b></p><p> UML 圖(圖 3)還包括 ActionError 和 ActionErrors 。 ActionError 封裝了單
102、個錯誤消息。 ActionErrors 是 ActionError 類的容器,View 可以使用標記訪問這些類。 ActionError 是 Struts 保持錯誤列表的方式。</p><p> 圖4. Command (ActionServlet) 與 Model (Action) 之間的關系的 UML 圖</p><p> ActionMapping 類 </p>&
103、lt;p> 輸入事件通常是在 HTTP 請求表單中發(fā)生的,servlet 容器將 HTTP 請求轉換為 HttpServletRequest 。控制器查看輸入事件并將請求分派給某個 Action 類。 struts-config.xml 確定 Controller 調用哪個 Action 類。 struts-config.xml 配置信息被轉換為一組 ActionMapping ,而后者又被放入 ActionMappings 容
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
- 5. 眾賞文庫僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- struts-mvc外文翻譯
- 外文翻譯-----mvc設計模式
- mvc設計模式畢業(yè)論文外文翻譯
- 計算機外文翻譯---spring的web_mvc_構架模式
- [雙語翻譯]---外文翻譯--集成ssh組合框架實現mvc模式的應用研究
- 集成ssh組合框架實現mvc模式的應用研究-外文翻譯
- 外文翻譯-----一種新的網絡應用程序開發(fā)框架——mvc
- [雙語翻譯]--軟件工程外文翻譯--為快速開發(fā)web應用設計一個mvc模型
- 2011年---外文翻譯--集成ssh組合框架實現mvc模式的應用研究
- 計算機專業(yè)畢業(yè)設計外文翻譯--spring的web mvc 構架模式
- 2011年---外文翻譯--集成ssh組合框架實現mvc模式的應用研究
- [雙語翻譯]數據庫管理外文翻譯--基于mvc模式面向數據庫管理的php框架
- 計算機畢業(yè)外文翻譯---struts——mvc 的一種開放源碼實現
- 2011年---外文翻譯--集成ssh組合框架實現mvc模式的應用研究 (原文)
- 2011年---外文翻譯--集成ssh組合框架實現mvc模式的應用研究 (譯文)
- [雙語翻譯]數據庫管理外文翻譯--基于mvc模式面向數據庫管理的php框架(英文)
- 2011年---外文翻譯--集成SSH組合框架實現MVC模式的應用研究 (原文).pdf
- 2011年---外文翻譯--集成SSH組合框架實現MVC模式的應用研究 (譯文).doc
- [雙語翻譯]數據庫管理外文翻譯--基于mvc模式面向數據庫管理的php框架中英全
- 外文翻譯 - 基于mvc模式的圖書館信息管理系統(tǒng)的設計與實現
評論
0/150
提交評論