在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 基于bs的毕业论文管理系统

基于bs的毕业论文管理系统

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:19.01M
  • 下载次数:19
  • 浏览次数:220
  • 发布时间:2021-02-13
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.rar
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】
基于bS的毕业论文管理系统,内容全面,使用struts spring ibatis框架技术开发
【实例截图】
【核心代码】
32e3a584-33c2-4732-9e9a-ddaf53d02398
└── paperManagement
├── admin
│   ├── admin_add.jsp
│   ├── adminList.jsp
│   ├── bottom.jsp
│   ├── department_add.jsp
│   ├── departmentList.jsp
│   ├── editAdmin.jsp
│   ├── editDepartment.jsp
│   ├── editSpeciality.jsp
│   ├── editStudent.jsp
│   ├── editTeacher.jsp
│   ├── editTitle.jsp
│   ├── editZc.jsp
│   ├── fileUpLoad.jsp
│   ├── index.jsp
│   ├── left.jsp
│   ├── msg_add.jsp
│   ├── msgList.jsp
│   ├── paperList.jsp
│   ├── speciality_add.jsp
│   ├── specialityList.jsp
│   ├── student_add.jsp
│   ├── studentList.jsp
│   ├── studentNo.jsp
│   ├── syscom.jsp
│   ├── teacher_add.jsp
│   ├── teacherList.jsp
│   ├── title_add.jsp
│   ├── titleList.jsp
│   ├── titleYes.jsp
│   ├── top.jsp
│   ├── zc_add.jsp
│   └── zcList.jsp
├── bottom.jsp
├── copyright.jsp
├── css
│   ├── CssAdmin.css
│   └── css.css
├── error.jsp
├── exlUpLoad1.jsp
├── exlUpLoad2.jsp
├── exlUpLoad.jsp
├── fileDownLoad.jsp
├── fileUpLoad.jsp
├── images
│   ├── Admin_left_1.gif
│   ├── Admin_left_2.gif
│   ├── Admin_left_3.gif
│   ├── Admin_left_4.gif
│   ├── Admin_left_5.gif
│   ├── admin_left_6.gif
│   ├── Admin_left_7.gif
│   ├── Admin_left_8.gif
│   ├── Admin_left_9.gif
│   ├── adminmain02.gif
│   ├── adminmain03.gif
│   ├── adminmain0line2.gif
│   ├── adminmain0line.gif
│   ├── Bar.gif
│   ├── Explain.gif
│   ├── fu_btn.gif
│   ├── loading.gif
│   ├── login.jpg
│   ├── SortEnd_Folder_Close.gif
│   ├── SortEnd_Folder_Open.gif
│   ├── Sort_File_End.gif
│   ├── Sort_File.gif
│   ├── Sort_Folder_Close.gif
│   ├── Sort_Folder_Open.gif
│   ├── Sort_Listline.gif
│   ├── SysHome_03.gif
│   ├── SysHome_bg.gif
│   ├── SysLeft_ag.gif
│   ├── SysLeft_bg_click.gif
│   ├── SysLeft_bg.gif
│   ├── SysLeft_bg_link.gif
│   ├── Sys_top.jpg
│   └── title.gif
├── index.jsp
├── js
│   ├── Admin.js
│   ├── jquery.js
│   ├── time.js
│   └── trim.js
├── left.jsp
├── list.jsp
├── login1.jsp
├── login.jsp
├── META-INF
│   └── MANIFEST.MF
├── paper.sql
├── pp.html
├── student
│   ├── bottom.jsp
│   ├── edit.jsp
│   ├── editStudent.jsp
│   ├── left.jsp
│   ├── main.jsp
│   ├── score.jsp
│   ├── syscom.jsp
│   ├── titleDetail.jsp
│   ├── titleList.jsp
│   ├── titleYes.jsp
│   └── top.jsp
├── syscom.jsp
├── teacher
│   ├── bottom.jsp
│   ├── edit.jsp
│   ├── editStudent.jsp
│   ├── editTeacher.jsp
│   ├── editTitle.jsp
│   ├── fileUpLoad.jsp
│   ├── left.jsp
│   ├── main.jsp
│   ├── msgList.jsp
│   ├── myTitle.jsp
│   ├── studentList.jsp
│   ├── syscom.jsp
│   ├── teacherList.jsp
│   ├── title_add.jsp
│   ├── titleDetail.jsp
│   ├── titleList.jsp
│   ├── titleYes.jsp
│   └── top.jsp
├── top.jsp
├── WEB-INF
│   ├── classes
│   │   ├── applicationContext-[admin-action].xml
│   │   ├── applicationContext-[department-action].xml
│   │   ├── applicationContext-[file-action].xml
│   │   ├── applicationContext-[login-action].xml
│   │   ├── applicationContext-[msg-action].xml
│   │   ├── applicationContext-[paper-action].xml
│   │   ├── applicationContext-[sel-action].xml
│   │   ├── applicationContext-[speciality-action].xml
│   │   ├── applicationContext-[stu-action].xml
│   │   ├── applicationContext-[teacher-action].xml
│   │   ├── applicationContext-[title-action].xml
│   │   ├── applicationContext.xml
│   │   ├── applicationContext-[zc-action].xml
│   │   ├── com
│   │   │   ├── admin
│   │   │   │   ├── action
│   │   │   │   │   └── AdminAction.class
│   │   │   │   ├── applicationContext-[admin].xml
│   │   │   │   ├── dao
│   │   │   │   │   ├── AdminDao.class
│   │   │   │   │   └── impl
│   │   │   │   │   └── AdminDaoImpl.class
│   │   │   │   └── service
│   │   │   │   ├── AdminService.class
│   │   │   │   └── impl
│   │   │   │   └── AdminServiceImpl.class
│   │   │   ├── department
│   │   │   │   ├── action
│   │   │   │   │   └── DepartmentAction.class
│   │   │   │   ├── applicationContext-[department].xml
│   │   │   │   ├── dao
│   │   │   │   │   ├── DepartmentDao.class
│   │   │   │   │   └── impl
│   │   │   │   │   └── DepartmentDaoImpl.class
│   │   │   │   ├── pojo
│   │   │   │   │   └── Department.class
│   │   │   │   └── service
│   │   │   │   ├── DepartmentService.class
│   │   │   │   └── impl
│   │   │   │   └── DepartmentServiceImpl.class
│   │   │   ├── file
│   │   │   │   ├── action
│   │   │   │   │   ├── DownAction.class
│   │   │   │   │   ├── DownLoadAction.class
│   │   │   │   │   ├── ExportAction.class
│   │   │   │   │   ├── FileDownAction.class
│   │   │   │   │   ├── FileUpAction.class
│   │   │   │   │   └── FileUploadAction.class
│   │   │   │   └── pojo
│   │   │   │   └── ExcelWorkSheet.class
│   │   │   ├── login
│   │   │   │   ├── action
│   │   │   │   │   └── LoginAction.class
│   │   │   │   ├── applicationContext-[login].xml
│   │   │   │   ├── dao
│   │   │   │   │   ├── impl
│   │   │   │   │   │   └── LoginDaoImpl.class
│   │   │   │   │   └── LoginDao.class
│   │   │   │   └── service
│   │   │   │   ├── impl
│   │   │   │   │   └── LoginServiceImpl.class
│   │   │   │   └── LoginService.class
│   │   │   ├── message
│   │   │   │   ├── action
│   │   │   │   │   └── MsgAction.class
│   │   │   │   ├── applicationContext-[msg].xml
│   │   │   │   ├── dao
│   │   │   │   │   ├── impl
│   │   │   │   │   │   └── MsgDaoImpl.class
│   │   │   │   │   └── MsgDao.class
│   │   │   │   └── service
│   │   │   │   ├── impl
│   │   │   │   │   └── MsgServiceImpl.class
│   │   │   │   └── MsgService.class
│   │   │   ├── paper
│   │   │   │   ├── action
│   │   │   │   │   └── PaperAction.class
│   │   │   │   ├── applicationContext-[paper].xml
│   │   │   │   ├── dao
│   │   │   │   │   ├── impl
│   │   │   │   │   │   └── PaperDaoImpl.class
│   │   │   │   │   └── PaperDao.class
│   │   │   │   └── service
│   │   │   │   ├── impl
│   │   │   │   │   └── PaperServiceImpl.class
│   │   │   │   └── PaperService.class
│   │   │   ├── Sel
│   │   │   │   ├── action
│   │   │   │   │   └── SelAction.class
│   │   │   │   ├── applicationContext-[sel].xml
│   │   │   │   ├── dao
│   │   │   │   │   ├── impl
│   │   │   │   │   │   └── SelDaoImpl.class
│   │   │   │   │   └── SelDao.class
│   │   │   │   └── service
│   │   │   │   ├── impl
│   │   │   │   │   └── SelServiceImpl.class
│   │   │   │   └── SelService.class
│   │   │   ├── speciality
│   │   │   │   ├── action
│   │   │   │   │   └── SpecialityAction.class
│   │   │   │   ├── applicationContext-[speciality].xml
│   │   │   │   ├── dao
│   │   │   │   │   ├── impl
│   │   │   │   │   │   └── SpecialityDaoImpl.class
│   │   │   │   │   └── SpecialityDao.class
│   │   │   │   ├── pojo
│   │   │   │   │   └── SpecialityInfo.class
│   │   │   │   └── service
│   │   │   │   ├── impl
│   │   │   │   │   └── SpecialityServiceImpl.class
│   │   │   │   └── SpecialityService.class
│   │   │   ├── stu
│   │   │   │   ├── action
│   │   │   │   │   └── StudentAction.class
│   │   │   │   ├── applicationContext-[stu].xml
│   │   │   │   ├── dao
│   │   │   │   │   ├── impl
│   │   │   │   │   │   └── StudentDaoImpl.class
│   │   │   │   │   └── StudentDao.class
│   │   │   │   ├── pojo
│   │   │   │   │   └── StuInfo.class
│   │   │   │   ├── service
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── PageGenerateImpl.class
│   │   │   │   │   │   └── StudentServiceImpl.class
│   │   │   │   │   ├── PageGenerate.class
│   │   │   │   │   └── StudentService.class
│   │   │   │   └── vo
│   │   │   │   └── PageStruct.class
│   │   │   ├── teacher
│   │   │   │   ├── action
│   │   │   │   │   └── TeacherAction.class
│   │   │   │   ├── applicationContext-[teacher].xml
│   │   │   │   ├── dao
│   │   │   │   │   ├── impl
│   │   │   │   │   │   └── TeacherDaoImpl.class
│   │   │   │   │   └── TeacherDao.class
│   │   │   │   ├── pojo
│   │   │   │   │   └── TeaInfo.class
│   │   │   │   └── service
│   │   │   │   ├── impl
│   │   │   │   │   └── TeacherServiceImpl.class
│   │   │   │   └── TeacherService.class
│   │   │   ├── title
│   │   │   │   ├── action
│   │   │   │   │   └── TitleAction.class
│   │   │   │   ├── applicationContext-[title].xml
│   │   │   │   ├── dao
│   │   │   │   │   ├── impl
│   │   │   │   │   │   └── TitleDaoImpl.class
│   │   │   │   │   └── TitleDao.class
│   │   │   │   ├── pojo
│   │   │   │   │   └── TitleInfo.class
│   │   │   │   └── service
│   │   │   │   ├── impl
│   │   │   │   │   └── TitleServiceImpl.class
│   │   │   │   └── TitleService.class
│   │   │   └── zc
│   │   │   ├── action
│   │   │   │   └── ZcAction.class
│   │   │   ├── applicationContext-[zc].xml
│   │   │   ├── dao
│   │   │   │   ├── impl
│   │   │   │   │   └── ZcDaoImpl.class
│   │   │   │   └── ZcDao.class
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   └── ZcServiceImpl.class
│   │   │   └── ZcService.class
│   │   ├── commons
│   │   │   ├── IBATISDB.class
│   │   │   ├── MethodResult.class
│   │   │   ├── MyFilter.class
│   │   │   └── vo
│   │   │   ├── ibatisxml
│   │   │   │   ├── sqlmap-config.xml
│   │   │   │   ├── Tbl_admin_MYSQL.xml
│   │   │   │   ├── Tbl_department_MYSQL.xml
│   │   │   │   ├── Tbl_message_MYSQL.xml
│   │   │   │   ├── Tbl_paper_MYSQL.xml
│   │   │   │   ├── Tbl_paperSel_MYSQL.xml
│   │   │   │   ├── Tbl_speciality_MYSQL.xml
│   │   │   │   ├── Tbl_student_MYSQL.xml
│   │   │   │   ├── Tbl_teacher_MYSQL.xml
│   │   │   │   ├── Tbl_title_MYSQL.xml
│   │   │   │   ├── Tbl_user_MYSQL.xml
│   │   │   │   └── Tbl_zc_MYSQL.xml
│   │   │   ├── tbl_admin.class
│   │   │   ├── tbl_department.class
│   │   │   ├── tbl_message.class
│   │   │   ├── tbl_paper.class
│   │   │   ├── tbl_paperSel.class
│   │   │   ├── tbl_speciality.class
│   │   │   ├── tbl_student.class
│   │   │   ├── tbl_teacher.class
│   │   │   ├── tbl_title.class
│   │   │   ├── Tbl_user.class
│   │   │   └── tbl_zc.class
│   │   ├── struts.properties
│   │   └── struts.xml
│   ├── lib
│   │   ├── aspectjweaver.jar
│   │   ├── commons-dbcp.jar
│   │   ├── commons-fileupload-1.2.jar
│   │   ├── commons-io-1.3.1.jar
│   │   ├── commons-logging-1.0.4.jar
│   │   ├── commons-pool-1.4.jar
│   │   ├── commons-pool.jar
│   │   ├── dwr.jar
│   │   ├── freemarker-2.3.8.jar
│   │   ├── ibatis-2.3.4.726.jar
│   │   ├── jsf-api.jar
│   │   ├── jsf-impl.jar
│   │   ├── jstl-1.2.jar
│   │   ├── jxl.jar
│   │   ├── mysql-connector-java-5.1.15-bin.jar
│   │   ├── ognl-2.6.11.jar
│   │   ├── poi-3.5-beta6-20090622.jar
│   │   ├── poi-contrib-3.5-beta6-20090622.jar
│   │   ├── poi-ooxml-3.5-beta6-20090622.jar
│   │   ├── poi-scratchpad-3.5-beta6-20090622.jar
│   │   ├── spring.jar
│   │   ├── struts2-core-2.0.11.jar
│   │   ├── struts2-spring-plugin-2.0.11.jar
│   │   ├── struts2-sunspoter-stream-1.0.jar
│   │   └── xwork-2.0.4.jar
│   ├── report.xls
│   ├── struts.properties
│   └── web.xml
└── yzm.jsp

91 directories, 281 files

标签:

实例下载地址

基于bs的毕业论文管理系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警