📅  最后修改于: 2021-01-11 02:46:06             🧑  作者: Mango
在这里,我们将使用myeclipse ide创建struts 2应用程序。我们不需要关心jar文件,因为MyEclipse提供了这些jar文件。
您需要按照以下步骤创建struts 2应用程序。
创建Web项目,单击文件菜单-新建–项目–网络工程–写项目名称,如firststruts –完成。
要添加struts 2功能,请选择项目-单击myeclipse菜单-添加项目功能–添加struts功能。
选择2.1和/ *作为网址格式-完成。
它使用struts核心标签创建带有字段的表单。
<%@ taglib uri="/struts-tags" prefix="s" %>
这是简单的动作类,其中包含带有setter和getter的属性。它包含还用于定义业务逻辑的execute方法。
package com.javatpoint;
public class Product {
private int id;
private String name;
private float price;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
public String execute(){
return "success";
}
}
该xml文件注册动作和视图组件。
welcome.jsp
该jsp页面显示在操作对象中设置的信息。
<%@ taglib uri="/struts-tags" prefix="s" %>
Product Id:
Product Name:
Product Price:
要启动服务器并部署项目,请右键单击项目-运行方式-MyEclipse服务器应用程序。