资源简介
自己做的J2EE毕业设计,界面UI简洁大方,和传统的管理系统完全不同。
代码片段和文件信息
package gov.dongdan.vaccine.action.admin;
import gov.dongdan.vaccine.bean.Admin;
import gov.dongdan.vaccine.bean.Notice;
import gov.dongdan.vaccine.mapper.NoticeMapper;
import gov.dongdan.vaccine.mapper.impl.NoticeMapperImpl;
import gov.dongdan.vaccine.util.Util;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
public class addNoticeAction extends ActionSupport {
NoticeMapper noticeMapper = new NoticeMapperImpl();
private static final long serialVersionUID = 1L;
private Notice notice;
private String action;
private String content1;
public String getContent1() {
return content1;
}
public void setContent1(String content1) {
this.content1 = content1;
}
public Notice getNotice() {
return notice;
}
public void setNotice(Notice notice) {
this.notice = notice;
}
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public Notice getnotice() {
return notice;
}
public void setnotice(Notice notice) {
this.notice = notice;
}
public String execute() {
if (“modify“.equals(action)) {
noticeMapper.deleteById(notice.getId());
}
noticeMapper.insertNotice(buildNotice());
return SUCCESS;
}
private Notice buildNotice() {
// 获取operateID
Admin admin = (Admin) ActionContext.getContext().getSession()
.get((“user“));
notice.setOperatorId(admin.getId());
// 获取当前时间
notice.setReleaseTime(Util.getCurrentTime());
//
notice.setClosed(0);
System.out.println(“CC:“+content1);
System.out.println(notice);
return notice;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-05-14 16:43 vaccine\
文件 1882 2014-05-01 23:04 vaccine\.classpath
目录 0 2014-06-06 23:15 vaccine\.git\
目录 0 2014-05-02 12:04 vaccine\.git\branches\
文件 22 2014-06-06 23:15 vaccine\.git\COMMIT_EDITMSG
文件 303 2014-05-02 12:23 vaccine\.git\config
文件 73 2014-05-02 12:04 vaccine\.git\desc
文件 87 2014-06-05 16:49 vaccine\.git\FETCH_HEAD
文件 23 2014-05-14 16:43 vaccine\.git\HEAD
目录 0 2014-05-02 12:04 vaccine\.git\hooks\
文件 452 2014-05-02 12:04 vaccine\.git\hooks\applypatch-msg.sample
文件 896 2014-05-02 12:04 vaccine\.git\hooks\commit-msg.sample
文件 189 2014-05-02 12:04 vaccine\.git\hooks\post-update.sample
文件 398 2014-05-02 12:04 vaccine\.git\hooks\pre-applypatch.sample
文件 1642 2014-05-02 12:04 vaccine\.git\hooks\pre-commit.sample
文件 1352 2014-05-02 12:04 vaccine\.git\hooks\pre-push.sample
文件 4951 2014-05-02 12:04 vaccine\.git\hooks\pre-reba
文件 1239 2014-05-02 12:04 vaccine\.git\hooks\prepare-commit-msg.sample
文件 3611 2014-05-02 12:04 vaccine\.git\hooks\update.sample
文件 64912 2014-06-06 23:15 vaccine\.git\index
目录 0 2014-05-02 12:04 vaccine\.git\info\
文件 240 2014-05-02 12:04 vaccine\.git\info\exclude
目录 0 2014-05-02 12:04 vaccine\.git\logs\
文件 4021 2014-06-06 23:15 vaccine\.git\logs\HEAD
目录 0 2014-05-02 12:23 vaccine\.git\logs\refs\
目录 0 2014-05-08 23:23 vaccine\.git\logs\refs\heads\
文件 2987 2014-06-06 23:15 vaccine\.git\logs\refs\heads\master
文件 495 2014-05-14 16:42 vaccine\.git\logs\refs\heads\tag_4_8
目录 0 2014-05-02 12:23 vaccine\.git\logs\refs\remotes\
目录 0 2014-05-08 23:23 vaccine\.git\logs\refs\remotes\origin\
文件 2555 2014-06-06 23:17 vaccine\.git\logs\refs\remotes\origin\master
............此处省略1955个文件信息
相关资源
- 搞定J2EE:Struts_Spring_Hibernate整合详解与
- 用J2EE做的一个动态网站
- 在线电影售票系统-使用ssh框架实现
- 基于JavaEE的个人理财系统
- 基于JAVA EE校园新闻发布系统
- 基于Java EE淘宝网站购物系统
- 基于javaEE的酒店预订系统
- javaweb房产中介管理系统我2013年的毕业
- J2EE设计开发编程指南中文版
- javaee.jar
- 物流系统毕业设计Java+MySQL+ppt+论文
- JavaWeb毕设
- 基于J2EE/SSH开发的人力资源管理系统
- java聊天室(ssh框架)
- 5个J2EE课程设计源代码
- SpringMVC简易员工管理演示系统J2EE版
- 大工软院j2ee作业软院找人3.zip
- 毕设之在线教育网站
- ssh简单项目毕设课设
- 基于SSM的服装设计作品在线展销系统
- web火车票售票系统j2ee架构 源码
- Java EE实用教程 郑阿奇 第3版 课本源
- java计算机毕设--包含76个系统码源+论
- 80份JAVA毕设集合.7z
- 基于JAVA的工资管理系统源码(J2EE 工
- servlet+jsp实现上课点名系统
- Android毕业设计(客户端+服务器源码)
- java j2ee 课程设计报告
- 基于java语言的城市公交系统
- JAVA-基于ssm社团信息管理系统.zip
评论
共有 条评论