Struts 1 & 2

来源:互联网 发布:淘宝的标品与非标品 编辑:程序博客网 时间:2024/06/06 17:07
---


Struts 1.3


struts-core jar
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;


org.apache.struts.action.ActionServlet




Struts 1 work flow: http://www.techfaq360.com/tutorial/struts_flow.jsp


Struts 1 work flow(only MVC and the PIC): http://www.raistudies.com/struts-1/architecture-of-struts-1-mvc-framework/


Sample FYI: https://www.mkyong.com/struts/struts-hello-world-example/


1- Import (Existing Maven Projects) ~\Struts13Example


2- (Project) Properties -> Java Build Path -> Libraries -> Button 'Add Library' -> Server RunTime -> Next -> Select Tomcat , then click Finish


3- Config Struts13Example Resource to Server(TC here)


4- Run Server


5- http://localhost:8080/Struts13Example/helloWorld.do


---


Struts 2


Sample FYI:
http://www.mkyong.com/struts2/struts-2-hello-world-example/
http://www.mkyong.com/struts2/struts-2-hello-world-annotation-example/


Struts 2 work flow:
https://struts.apache.org/docs/the-struts-2-request-flow.html
http://www.simplecodestuffs.com/struts-2-overview/
http://www.jitendrazaa.com/blog/java/struts/what-is-struts-2-and-how-it-works/
http://www.tutorialspoint.com/struts_2/struts_architecture.htm
http://www.javatpoint.com/struts-2-architecture-and-flow
http://stackoverflow.com/questions/3266748/at-a-high-level-how-does-struts2-work-im-coming-from-a-mvc-background


---
0 0