ssh-----编写第一个Struts2程序

第一步

在eclipse新建一个项目,在下载的struts2文件里找到apps下面的struts2-blank.war,解压之后将lib下面的jar包复制在项目中


第二步

将示例文件中的web.xml文件中的fileter中的代码复制到自己的web.xml里(配置控制器)



        struts2
        org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
   



   
        struts2
        /*
   

第三步

配置struts.xml(将struts的控制器类和路径进行一个匹配)struts.xml文件在src目录下



"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">



       
   
   
   
   
      
   


第四步:

在webContent目录下,新建一个index.jsp页面,新建包(com.wxf.wwsy.action)和类(LoginAction)





package com.wxf.wwsy.action;


public class LoginAction {


public String execute(){
return "success";
}
}

第五步:

在struts.xml里配置action



         /index.jsp
       


接下来,可以将项目放在tomcat下,在浏览器下进行访问啦














你可能感兴趣的:(ssh基础学习记录)