资源简介
新闻发布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\.myme
文件 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.xm
文件 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\databa
文件 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.xm
文件 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.xm
文件 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.xm
文件 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.xm
文件 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.xm
文件 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个文件信息
相关资源
- 使用struts2+hibernate的框架实现的网上购
- 基于Struts2电影网站
- 商品销售后台管理系统的设计与实现
- SSH学生管理系统.
- directshow9
- TextMeshPro中文字体
- 公交站系统有前后台
- 报到管理系统
- 学拼音FLASH课件全套
- 3D Flash Memories
- 愤怒的小鸟 flash版源文件
- OPENGL 水波效果 源代码
- SSH进销存系统
- Xshell_Plus破解永久版.7z
- ssh框架实现论坛发帖,回帖 删除贴登
- print2flash4 破解补丁
- ecshop2.7.3仿酒仙网模版整站
- S5PV210 最新排版最合理的三星英文da
- 夏普303sh的root方法
-
install_flash_pla
yer_ppapi.exe - ForShare 8.1免杀部落VIP源码
- Linux命令行与shell脚本编程大全.第3版
- 基于Shiro和Spring的用户权限控制(AC
- SSH网上商城项目实战完整源码带博文
- ssh_employee
- Windows PowerShell实战指南第2版样章
- flashpaper与flexpaper破解版本
- Sharemind2008版
-
Setup_Jli
nk_V6.10 - Wireshark-win64-2.2.6
评论
共有 条评论