struts增删改查

1、导入相关的pom依赖(struts、自定义标签库的依赖)

  <dependency>
			<groupId>jstl</groupId>
			<artifactId>jstl</artifactId>
			<version>1.2</version>
		</dependency>
		<dependency>
			<groupId>taglibs</groupId>
			<artifactId>standard</artifactId>
			<version>1.1.2</version>
		</dependency>

		<!-- 5.4、tomcat-jsp-api -->
		<dependency>
			<groupId>org.apache.tomcat</groupId>
			<artifactId>tomcat-jsp-api</artifactId>
			<version>8.0.47</version>
		</dependency>

2、分页的tag类导入、z.tld、完成web.xml的配置

/**
 * 分页工具类
 *
 */
public class PageBean {

    private int page = 1;// 页码

    private int rows = 4;// 页大小

    private int total = 0;// 总记录数

    private boolean pagination = true;// 是否分页
    // 获取前台向后台提交的所有参数
    private Map<String, String[]> parameterMap;
    // 获取上一次访问后台的url
    private String url;

    /**
     * 初始化pagebean
     * 
     * @param req
     */
    public void setRequest(HttpServletRequest req) {
        this.setPage(req.getParameter("page"));
        this.setRows(req.getParameter("rows"));
        // 只有jsp页面上填写pagination=false才是不分页
        this.setPagination(!"fasle".equals(req.getParameter("pagination")));
        this.setParameterMap(req.getParameterMap());
        this.setUrl(req.getRequestURL().toString());
    }

    public int getMaxPage() {
        return this.total % this.rows == 0 ? this.total / this.rows : this.total / this.rows + 1;
    }

    public int nextPage() {
        return this.page < this.getMaxPage() ? this.page + 1 : this.getMaxPage();
    }

    public int previousPage() {
        return this.page > 1 ? this.page - 1 : 1;
    }

    public PageBean() {
        super();
    }

    public int getPage() {
        return page;
    }

    public void setPage(int page) {
        this.page = page;
    }

    public void setPage(String page) {
        this.page = StringUtils.isBlank(page) ? this.page : Integer.valueOf(page);
    }

    public int getRows() {
        return rows;
    }

    public void setRows(int rows) {
        this.rows = rows;
    }

    public void setRows(String rows) {
        this.rows = StringUtils.isBlank(rows) ? this.rows : Integer.valueOf(rows);
    }

    public int getTotal() {
        return total;
    }

    public void setTotal(int total) {
        this.total = total;
    }

    public void setTotal(String total) {
        this.total = Integer.parseInt(total);
    }

    public boolean isPagination() {
        return pagination;
    }

    public void setPagination(boolean pagination) {
        this.pagination = pagination;
    }

    public Map<String, String[]> getParameterMap() {
        return parameterMap;
    }

    public void setParameterMap(Map<String, String[]> parameterMap) {
        this.parameterMap = parameterMap;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    /**
     * 获得起始记录的下标
     * 
     * @return
     */
    public int getStartIndex() {
        return (this.page - 1) * this.rows;
    }

    @Override
    public String toString() {
        return "PageBean [page=" + page + ", rows=" + rows + ", total=" + total + ", pagination=" + pagination
                + ", parameterMap=" + parameterMap + ", url=" + url + "]";
    }

}

t.tld文件

<?xml version="1.0" encoding="UTF-8" ?>

<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
    version="2.0">
    
  <description>thf 1.1 core library</description>
  <display-name>thf core</display-name>
  <tlib-version>1.1</tlib-version>
  <short-name>t</short-name>
  <uri>/thf</uri>

 <tag>
    <name>page</name>
    <tag-class>com.thf.tag.PageTag</tag-class>
    <body-content>JSP</body-content>
    <attribute>
        <name>pageBean</name>
        <required>true</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
  </tag>
  
</taglib>


web.xml

<filter>
    <filter-name>encodingFiter</filter-name>
    <filter-class>com.util.EncodingFiter</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>encodingFiter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

  <filter>
    <filter-name>struts</filter-name>
    <filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>struts</filter-name>
    <url-pattern>*.action</url-pattern>
  </filter-mapping>

第三步:dao层去访问数据

写dao 当然还要一个实体类,接下来我们写一个实体类:
实体类( Clazz)

public class ClazzDao extends BaseDao<Clazz> {
    /**
     * 查询分页 查询单个数据公用的方法
     * @param clz
     * @param pageBean
     * @return
     */
    public List<Clazz> list(Clazz clz,PageBean pageBean){
        String sql="select * from t_struts_class where true";
        String cname=clz.getCname();
        int cid=clz.getCid();
        if(cid!=0) {
            sql +=" and cid = "+cid;
        }
        if(StringUtils.isNotBlank(cname)) {
            sql +=" and cname like '%"+cname+"%'";
        }
        return super.executeQuery(sql, Clazz.class, pageBean);
        
    }
    /**
     * 新增方法
     * @param clz
     * @return
     */
    public int add(Clazz clz) {
        String sql="insert into t_struts_class values(?,?,?,?)";
        return super.executeUpdate(sql, new String[] {"cid","cname","cteacher","pic"}, clz);
    }
    /**
     * 修改方法
     * @param clz
     * @return
     */
    public int edit(Clazz clz) {
        String sql="update t_struts_class set cname=?,cteacher=?,pic=? where cid=?";
        return super.executeUpdate(sql, new String[] {"cname","cteacher","pic","cid"}, clz);
    }
    /**
     * 删除方法
     * @param clz
     * @return
     */
    public int del(Clazz clz) {
        String sql="delete from t_struts_class where cid=?";
        return super.executeUpdate(sql, new String[] {"cid"}, clz);
    }

}

web层调用dao返回数据给jsp

public class ClazzAction extends BaseAction implements ModelDriven<Clazz>{

    
    private ClazzDao clzDao=new ClazzDao();
    private Clazz clz=new Clazz();
    
    public String list() {
        PageBean pageBean=new PageBean();
        pageBean.setRequest(request);
        List<Clazz> list=this.clzDao.list(clz, pageBean);
        request.setAttribute("clzList", list);
        request.setAttribute("pageBean", pageBean);
        return "list";
    }
    /**
     * 跳转新增修改页面的工用方法
     * @return
     */
    public String preSave() {
        if(clz.getCid()!=0) {
        Clazz c=this.clzDao.list(clz, null).get(0);
            request.setAttribute("clz", c);
        }
        return "preSave";
        
    }
    /**
     * 新增
     * @return
     */
    public String add() {
    result=    this.clzDao.add(clz);
        return "toList";
        
    }
    /**
     * 修改
     * @return
     */
    public String edit() {
        this.clzDao.edit(clz);
        return "toList";
        
    }
    /**
     * 删除
     * @return
     */
    public String del() {
        this.clzDao.del(clz);
        return "toList";
        
    }
    @Override
    public Clazz getModel() {
        // TODO Auto-generated method stub
        return clz;
    }
    
    
}

在struts_sy.xml进行配置

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
	"-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
	"http://struts.apache.org/dtds/struts-2.5.dtd">
<struts>
	<package name="sy" extends="base" namespace="/sy">
	<action name="/clz_*" class="com.thf.web.ClazzAction" method="{1}">
	<result name="list">/clzList.jsp</result>
	<result name="preSave">/clzEdit.jsp</result>
	<result name="toList" type="redirectAction">/clz_list</result>
	</action>
	</package>
</struts>

写jsp界面(clzList.jsp)

<body>

    <form action="${pageContext.request.contextPath}/sy/clz_list.action"
        method="post">
        班级名:<input type="text" name="cname"> <input type="submit">

    </form>
    <a href="${pageContext.request.contextPath }/sy/clz_preSave.action">新增</a>
    <table border="1" width="100%">

        <tr>
            <td>编号</td>
            <td>班级名</td>
            <td>教员</td>
            <td>图片</td>
            <td>操作</td>
        </tr>
        
        <c:forEach items="${clzList }" var="c">
            <tr>
                <td>${c.cid }</td>
                <td>${c.cname }</td>
                <td>${c.cteacher }</td>
                <td>${c.pic }</td>
                <td>
                    <a href="${pageContext.request.contextPath }/sy/clz_preSave.action?cid=${c.cid }">修改</a>&nbsp;&nbsp;
                    <a href="${pageContext.request.contextPath }/sy/clz_del.action?cid=${c.cid }">删除</a>&nbsp;&nbsp;
                    <a href="${pageContext.request.contextPath }/sy/clz_preUpload.action?cid=${c.cid }">上传图片</a>&nbsp;&nbsp;
                </td>
            </tr>
        </c:forEach>
    </table>

    <z:page pageBean="${pageBean }"></z:page>

</body>

编辑页面(clzEdit.jsp)

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>书籍编辑页面</title>
</head>
<body>
<form action="${pageContext.request.contextPath}${result.cname == null ? '/sy/clz_add.action' : '/sy/clz_edit.action' }"method="post">

	班级ID:<input type="text" name="cid" value="${result.cid}"><br>
	班级名称:<input type="text" name="cname" value="${result.cname }"><br>
	教员:<input type="text" name="cteacher" value="${result.cteacher}"><br>
	
	<input type="submit">
</form>

</body>
</html>

运行结果
在这里插入图片描述

增加:
在这里插入图片描述
在这里插入图片描述

修改:
在这里插入图片描述
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值