• 大小: 14.19MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-06-19
  • 语言: 其他
  • 标签: sh  

资源简介

新闻发布struts2+Hibernate 实现

资源截图

代码片段和文件信息

package com.action;


import javax.servlet.http.*;
import org.apache.struts.action.*;
import com.actionForm.AfficheForm;
import org.apache.struts.actions.DispatchAction;
import com.dao.AfficheDao;
import com.tool.Chinese;

public class AfficheAction extends DispatchAction {
    private Chinese chinese = new Chinese();
    private AfficheDao afficheDao = new AfficheDao();
//前台操作
    public ActionForward forntContentAfficheAction(ActionMapping mapping
                                                ActionForm form
                                                HttpServletRequest request
                                                HttpServletResponse response) {
  request.setAttribute(“form“afficheDao.selectOneAffiche(Integer.parseInt(request.getParameter(“id“))));
return mapping.findForward(“forntContentAfficheAction“);
    }
//后台操作

    //删除公告信息
    public ActionForward deleteAfficheAction(ActionMapping mapping
                                         ActionForm form
                                         HttpServletRequest request
                                         HttpServletResponse response) {
        afficheDao.deleteAffiche(Integer.parseInt(request.getParameter(“id“)));
            request.setAttribute(“result“ “删除公告信息成功!!!“);
            return mapping.findForward(“resultAfficheAction“);
    }
    //对公告信息的添加
    public ActionForward insertAfficheAction(ActionMapping mapping
                                             ActionForm form
                                             HttpServletRequest request
                                             HttpServletResponse response) {
        AfficheForm afficheForm = (AfficheForm) form;
        if (afficheForm.getContent() == null ||
            afficheForm.getContent().equals(““)) {
            return mapping.findForward(“insertAfficheAction“);
        } else {
            afficheForm.setCreateTime(afficheForm.getCreateTime());
            afficheForm.setContent(chinese.toChinese(afficheForm.getContent()));
            afficheForm.settitle(chinese.toChinese(afficheForm.gettitle()));
            afficheDao.insertAffiche(afficheForm);
            request.setAttribute(“result“ “添加公告信息成功!!!“);
            return mapping.findForward(“resultAfficheAction“);
        }
    }


    public ActionForward selectAfficheAction(ActionMapping mapping
                                             ActionForm form //对公告信息的全部查询
                                             HttpServletRequest request
                                             HttpServletResponse response) {

        request.setAttribute(“list“ afficheDao.selectAffiche());
        return mapping.findForward(“selectAfficheAction“);
    }

    //以自动编号为条件,查询公告信息
    public ActionForward selectOneAfficheAction(ActionMapping mapping
                                                ActionForm form
                                                HttpServletReques

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4836  2017-01-10 22:12  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\.classpath

     文件        451  2009-11-12 21:56  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\.myhibernatedata

     文件        291  2017-01-10 22:07  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\.mymetadata

     文件        240  2009-11-12 21:55  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\.mystrutsdata

     文件       2034  2017-01-10 22:07  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\.project

     文件        406  2009-11-12 21:55  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\.settings\.jsdtscope

     文件        395  2017-01-10 22:07  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\.settings\org.eclipse.jdt.core.prefs

     文件        382  2017-01-10 22:07  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\.settings\org.eclipse.wst.common.component

     文件        122  2017-01-10 22:07  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\.settings\org.eclipse.wst.common.project.facet.core.xml

     文件         49  2009-11-12 21:55  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2009-11-12 21:55  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件       1347  2010-08-24 19:40  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\database.sql

     文件          0  2009-11-12 21:56  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\ApplicationResources.properties

     文件       4456  2009-11-12 21:57  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\action\AfficheAction.java

     文件       4775  2009-11-12 21:57  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\action\ForceAction.java

     文件       5431  2009-11-12 21:57  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\action\ManagerAction.java

     文件       8179  2009-11-12 21:57  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\action\NewsAction.java

     文件       5179  2009-11-12 21:57  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\action\SortAction.java

     文件        609  2009-11-12 22:12  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\actionForm\AfficheForm.hbm.xml

     文件        844  2009-11-12 21:57  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\actionForm\AfficheForm.java

     文件        609  2009-11-12 22:12  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\actionForm\ForceForm.hbm.xml

     文件        876  2009-11-12 21:57  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\actionForm\ForceForm.java

     文件        730  2009-11-12 22:13  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\actionForm\ManagerForm.hbm.xml

     文件       1563  2009-11-12 21:57  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\actionForm\ManagerForm.java

     文件        728  2009-11-12 22:13  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\actionForm\NewsForm.hbm.xml

     文件       1377  2009-11-12 21:57  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\actionForm\NewsForm.java

     文件        609  2009-11-12 22:14  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\actionForm\SortForm.hbm.xml

     文件        959  2009-11-12 21:57  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\actionForm\SortForm.java

     文件       3311  2009-11-12 21:57  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\dao\AfficheDao.java

     文件       3358  2009-11-12 22:32  新闻发布系统源码,有前台后台,struts2+Hibernate 实现\wyNews\src\com\dao\ForceDao.java

............此处省略215个文件信息

评论

共有 条评论