首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

Web基础学生成绩管理系统

后端 7.48MB 17 需要积分: 1
立即下载

资源介绍:

主要介绍学生成绩管理系统的设计思路及实现方法,开发工具使用MyEclipse,数据库采用Mysql,服务器采用Tomcat。系统以Java作为基本开发语言, MVC设计模式,运用JavaEE开发技术以及目前市场上最流行的开源技术,在Win10平台上开发基于B/S模式的客户关系管理系统。主要介绍学生成绩管理系统的设计思路及实现方法,开发工具使用MyEclipse,数据库采用Mysql,服务器采用Tomcat。系统以Java作为基本开发语言, MVC设计模式,运用JavaEE开发技术以及目前市场上最流行的开源技术,在Win10平台上开发基于B/S模式的客户关系管理系统。主要介绍学生成绩管理系统的设计思路及实现方法,开发工具使用MyEclipse,数据库采用Mysql,服务器采用Tomcat。系统以Java作为基本开发语言, MVC设计模式,运用JavaEE开发技术以及目前市场上最流行的开源技术,在Win10平台上开发基于B/S模式的客户关系管理系统。主要介绍学生成绩管理系统的设计思路及实现方法,开发工具使用MyEclipse,数据库采用Mysql,服务器采用Tomcat。系统以Java作为
package com.ischoolbar.programmer.servlet; import java.io.IOException; import java.io.InputStream; import java.net.URLEncoder; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.servlet.ServletException; import javax.servlet.ServletOutputStream; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.fileupload.FileUploadException; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFRow; import org.apache.poi.hssf.usermodel.HSSFSheet; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.Cell; import net.sf.json.JSONArray; import net.sf.json.JSONObject; import com.ischoolbar.programmer.dao.CourseDao; import com.ischoolbar.programmer.dao.ScoreDao; import com.ischoolbar.programmer.dao.SelectedCourseDao; import com.ischoolbar.programmer.dao.StudentDao; import com.ischoolbar.programmer.model.Course; import com.ischoolbar.programmer.model.Page; import com.ischoolbar.programmer.model.Score; import com.ischoolbar.programmer.model.Student; import com.lizhou.exception.FileFormatException; import com.lizhou.exception.NullFileException; import com.lizhou.exception.ProtocolException; import com.lizhou.exception.SizeException; import com.lizhou.fileload.FileUpload; /** * Servlet implementation class ScoreServlet */ public class ScoreServlet extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#HttpServlet() */ public ScoreServlet() { super(); // TODO Auto-generated constructor stub } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String method = request.getParameter("method"); if("toScoreListView".equals(method)){ request.getRequestDispatcher("view/scoreList.jsp").forward(request, response); }else if("toScoreStatsView".equals(method)){ request.getRequestDispatcher("view/scoreStats.jsp").forward(request, response); }else if("AddScore".equals(method)){ addScore(request,response); }else if("ScoreList".equals(method)){ getScoreList(request,response); }else if("EditScore".equals(method)){ editScore(request,response); }else if("DeleteScore".equals(method)){ deleteScore(request,response); }else if("ImportScore".equals(method)){ importScore(request,response); }else if("ExportScoreList".equals(method)){ exportScore(request,response); }else if("getStatsList".equals(method)){ getStatsList(request,response); } } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub doGet(request, response); } //添加成绩信息 private void addScore(HttpServletRequest request,HttpServletResponse response) { // TODO Auto-generated method stub int studentId = request.getParameter("studentid") == null ? 0 : Integer.parseInt(request.getParameter("studentid").toString()); int courseId = request.getParameter("courseid") == null ? 0 : Integer.parseInt(request.getParameter("courseid").toString()); Double scoreNum = Double.parseDouble(request.getParameter("score")); String remark = request.getParameter("remark"); Score score = new Score(); score.setCourseId(courseId); score.setStudentId(studentId); score.setScore(scoreNum); score.setRemark(remark); ScoreDao scoreDao = new ScoreDao(); if(scoreDao.isAdd(studentId, courseId)){ try { response.getWriter().write("added"); scoreDao.closeCon(); return; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } String ret = "success"; if(!scoreDao.addScore(score)){ ret = "error"; } try { response.getWriter().write(ret); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } //修改学生成绩 private void editScore(HttpServletRequest request,HttpServletResponse response) { // TODO Auto-generated method stub int id = Integer.parseInt(request.getParameter("id")); int studentId = request.getParameter("studentid") == null ? 0 : Integer.parseInt(request.getParameter("studentid").toString()); int courseId = request.getParameter("courseid") == null ? 0 : Integer.parseInt(request.getParameter("courseid").toString()); Double scoreNum = Double.parseDouble(request.getParameter("score")); String remark = request.getParameter("remark"); Score score = new Score(); score.setId(id); score.setCourseId(courseId); score.setStudentId(studentId); score.setScore(scoreNum); score.setRemark(remark); ScoreDao scoreDao = new ScoreDao(); String ret = "success"; if(!scoreDao.editScore(score)){ ret = "error"; } try { response.getWriter().write(ret); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } //删除学生成绩 private void deleteScore(HttpServletRequest request,HttpServletResponse response) { // TODO Auto-generated method stub int id = Integer.parseInt(request.getParameter("id")); ScoreDao scoreDao = new ScoreDao(); String msg = "success"; if(!scoreDao.deleteScore(id)){ msg = "error"; } scoreDao.closeCon(); try { response.getWriter().write(msg); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } //导入学生成绩 private void importScore(HttpServletRequest request,HttpServletResponse response) { // TODO Auto-generated method stub FileUpload fileUpload = new FileUpload(request); fileUpload.setFileFormat("xls"); fileUpload.setFileFormat("xlsx"); fileUpload.setFileSize(2048); response.setCharacterEncoding("UTF-8"); try { InputStream uploadInputStream = fileUpload.getUploadInputStream(); HSSFWorkbook hssfWorkbook = new HSSFWorkbook(uploadInputStream); HSSFSheet sheetAt = hssfWorkbook.getSheetAt(0); int count = 0; String errorMsg = ""; StudentDao studentDao = new StudentDao(); CourseDao courseDao = new CourseDao(); ScoreDao scoreDao = new ScoreDao(); SelectedCourseDao selectedCourseDao = new SelectedCourseDao(); for(int rowNum = 1; rowNum <= sheetAt.getLastRowNum(); rowNum++){ HSSFRow row = sheetAt.getRow(rowNum); HSSFCell cell = row.getCell(0); //获取第0列,学生id if(cell == null){ errorMsg += "第" + rowNum + "行学生id缺失!\n"; continue; } if(cell.getCellType() != Cell.CELL_TYPE_NUMERIC){ errorMsg += "第" + rowNum + "行学生id类型不是整数!\n"; continue; } int studentId = new Double(cell.getNumericCellValue()).intValue(); //获取第1列,课程id cell = row.getCell(1); if(cell == null){ errorMsg += "第" + rowNum + "行课程id缺失!\n"; continue; } if(cell.getCellType() != Cell.CELL_TYPE_NUMERIC){ errorMsg += "第" + rowNum + "行课程id不是整数!\n"; continue; } int courseId = new Double(cell.getNumericCellValue()).intValue(); //获取第2列,成绩 cell = row.getCell(2); if(cell == null){ errorMsg += "第" + rowNum + "行成绩缺失!\n"; continue; } if(cell.getCellType() != Cell.CELL_TYPE_NUMERIC){ errorMsg += "第" + rowNum + "行成绩类型不是数字!\n"; continue; } double scoreValue = cell.getNumericCellValue(); //获取第3列,备注 cell = row.getCell(3); String remark = null; if(cell != null){ remark = cell.getStringCellValue(); } Student student = studentDao.getStudent(studentId); if(student == null){ errorMsg += "第" + rowNum + "行学生id不存在!\n"; continue; } Course course = courseDao.getCourse(courseId); if(course == null){ errorMsg += "

资源文件列表:

StudentManagerWeb.zip 大约有354个文件
  1. StudentManagerWeb/
  2. StudentManagerWeb/.classpath 824B
  3. StudentManagerWeb/.project 886B
  4. StudentManagerWeb/.settings/
  5. StudentManagerWeb/.settings/.jsdtscope 555B
  6. StudentManagerWeb/.settings/org.eclipse.jdt.core.prefs 357B
  7. StudentManagerWeb/.settings/org.eclipse.wst.common.component 495B
  8. StudentManagerWeb/.settings/org.eclipse.wst.common.project.facet.core.xml 335B
  9. StudentManagerWeb/.settings/org.eclipse.wst.jsdt.ui.superType.container 49B
  10. StudentManagerWeb/.settings/org.eclipse.wst.jsdt.ui.superType.name 6B
  11. StudentManagerWeb/build/
  12. StudentManagerWeb/build/classes/
  13. StudentManagerWeb/build/classes/com/
  14. StudentManagerWeb/build/classes/com/ischoolbar/
  15. StudentManagerWeb/build/classes/com/ischoolbar/programmer/
  16. StudentManagerWeb/build/classes/com/ischoolbar/programmer/dao/
  17. StudentManagerWeb/build/classes/com/ischoolbar/programmer/dao/AdminDao.class 1.95KB
  18. StudentManagerWeb/build/classes/com/ischoolbar/programmer/dao/AttendanceDao.class 4.29KB
  19. StudentManagerWeb/build/classes/com/ischoolbar/programmer/dao/BaseDao.class 1.38KB
  20. StudentManagerWeb/build/classes/com/ischoolbar/programmer/dao/ClazzDao.class 3.41KB
  21. StudentManagerWeb/build/classes/com/ischoolbar/programmer/dao/CourseDao.class 5.84KB
  22. StudentManagerWeb/build/classes/com/ischoolbar/programmer/dao/LeaveDao.class 4KB
  23. StudentManagerWeb/build/classes/com/ischoolbar/programmer/dao/ScoreDao.class 6.4KB
  24. StudentManagerWeb/build/classes/com/ischoolbar/programmer/dao/SelectedCourseDao.class 4.2KB
  25. StudentManagerWeb/build/classes/com/ischoolbar/programmer/dao/StudentDao.class 6.66KB
  26. StudentManagerWeb/build/classes/com/ischoolbar/programmer/dao/TeacherDao.class 6.66KB
  27. StudentManagerWeb/build/classes/com/ischoolbar/programmer/db/
  28. StudentManagerWeb/build/classes/com/ischoolbar/programmer/db/db_student_manager_web.sql 5.15KB
  29. StudentManagerWeb/build/classes/com/ischoolbar/programmer/filter/
  30. StudentManagerWeb/build/classes/com/ischoolbar/programmer/filter/LoginFilter.class 1.64KB
  31. StudentManagerWeb/build/classes/com/ischoolbar/programmer/model/
  32. StudentManagerWeb/build/classes/com/ischoolbar/programmer/model/Admin.class 1.12KB
  33. StudentManagerWeb/build/classes/com/ischoolbar/programmer/model/Attendance.class 1.3KB
  34. StudentManagerWeb/build/classes/com/ischoolbar/programmer/model/Clazz.class 929B
  35. StudentManagerWeb/build/classes/com/ischoolbar/programmer/model/Course.class 1.7KB
  36. StudentManagerWeb/build/classes/com/ischoolbar/programmer/model/Leave.class 1.5KB
  37. StudentManagerWeb/build/classes/com/ischoolbar/programmer/model/Page.class 963B
  38. StudentManagerWeb/build/classes/com/ischoolbar/programmer/model/Score.class 1.31KB
  39. StudentManagerWeb/build/classes/com/ischoolbar/programmer/model/SelectedCourse.class 915B
  40. StudentManagerWeb/build/classes/com/ischoolbar/programmer/model/Student.class 2.09KB
  41. StudentManagerWeb/build/classes/com/ischoolbar/programmer/model/Teacher.class 2.07KB
  42. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/
  43. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/AttendanceServlet.class 7.61KB
  44. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/ClazzServlet.class 5.24KB
  45. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/CourseServlet.class 6.08KB
  46. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/CpachaServlet.class 2.09KB
  47. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/LeaveServlet.class 6.48KB
  48. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/LoginServlet.class 3.92KB
  49. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/PhotoServlet.class 6.89KB
  50. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/ScoreServlet.class 16.75KB
  51. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/SelectedCourseServlet.class 5.92KB
  52. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/StudentServlet.class 6.72KB
  53. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/SystemServlet.class 4.84KB
  54. StudentManagerWeb/build/classes/com/ischoolbar/programmer/servlet/TeacherServlet.class 6.76KB
  55. StudentManagerWeb/build/classes/com/ischoolbar/programmer/util/
  56. StudentManagerWeb/build/classes/com/ischoolbar/programmer/util/CpachaUtil.class 5.99KB
  57. StudentManagerWeb/build/classes/com/ischoolbar/programmer/util/DateFormatUtil.class 705B
  58. StudentManagerWeb/build/classes/com/ischoolbar/programmer/util/DbUtil.class 1.88KB
  59. StudentManagerWeb/build/classes/com/ischoolbar/programmer/util/SnGenerateUtil.class 906B
  60. StudentManagerWeb/build/classes/com/ischoolbar/programmer/util/StringUtil.class 552B
  61. StudentManagerWeb/src/
  62. StudentManagerWeb/src/com/
  63. StudentManagerWeb/src/com/ischoolbar/
  64. StudentManagerWeb/src/com/ischoolbar/programmer/
  65. StudentManagerWeb/src/com/ischoolbar/programmer/dao/
  66. StudentManagerWeb/src/com/ischoolbar/programmer/dao/AdminDao.java 993B
  67. StudentManagerWeb/src/com/ischoolbar/programmer/dao/AttendanceDao.java 3.28KB
  68. StudentManagerWeb/src/com/ischoolbar/programmer/dao/BaseDao.java 976B
  69. StudentManagerWeb/src/com/ischoolbar/programmer/dao/ClazzDao.java 1.96KB
  70. StudentManagerWeb/src/com/ischoolbar/programmer/dao/CourseDao.java 4.81KB
  71. StudentManagerWeb/src/com/ischoolbar/programmer/dao/LeaveDao.java 2.6KB
  72. StudentManagerWeb/src/com/ischoolbar/programmer/dao/ScoreDao.java 4.82KB
  73. StudentManagerWeb/src/com/ischoolbar/programmer/dao/SelectedCourseDao.java 3.32KB
  74. StudentManagerWeb/src/com/ischoolbar/programmer/dao/StudentDao.java 5.47KB
  75. StudentManagerWeb/src/com/ischoolbar/programmer/dao/TeacherDao.java 5.5KB
  76. StudentManagerWeb/src/com/ischoolbar/programmer/db/
  77. StudentManagerWeb/src/com/ischoolbar/programmer/db/db_student_manager_web.sql 5.15KB
  78. StudentManagerWeb/src/com/ischoolbar/programmer/filter/
  79. StudentManagerWeb/src/com/ischoolbar/programmer/filter/LoginFilter.java 1003B
  80. StudentManagerWeb/src/com/ischoolbar/programmer/model/
  81. StudentManagerWeb/src/com/ischoolbar/programmer/model/Admin.java 599B
  82. StudentManagerWeb/src/com/ischoolbar/programmer/model/Attendance.java 736B
  83. StudentManagerWeb/src/com/ischoolbar/programmer/model/Clazz.java 459B
  84. StudentManagerWeb/src/com/ischoolbar/programmer/model/Course.java 1.07KB
  85. StudentManagerWeb/src/com/ischoolbar/programmer/model/Leave.java 940B
  86. StudentManagerWeb/src/com/ischoolbar/programmer/model/Page.java 724B
  87. StudentManagerWeb/src/com/ischoolbar/programmer/model/Score.java 753B
  88. StudentManagerWeb/src/com/ischoolbar/programmer/model/SelectedCourse.java 493B
  89. StudentManagerWeb/src/com/ischoolbar/programmer/model/Student.java 1.24KB
  90. StudentManagerWeb/src/com/ischoolbar/programmer/model/Teacher.java 1.23KB
  91. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/
  92. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/AttendanceServlet.java 6.37KB
  93. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/ClazzServlet.java 4.39KB
  94. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/CourseServlet.java 5.17KB
  95. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/CpachaServlet.java 1.23KB
  96. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/LeaveServlet.java 6.88KB
  97. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/LoginServlet.java 3.18KB
  98. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/PhotoServlet.java 6.11KB
  99. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/ScoreServlet.java 17.37KB
  100. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/SelectedCourseServlet.java 5.34KB
  101. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/StudentServlet.java 5.67KB
  102. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/SystemServlet.java 4.55KB
  103. StudentManagerWeb/src/com/ischoolbar/programmer/servlet/TeacherServlet.java 5.71KB
  104. StudentManagerWeb/src/com/ischoolbar/programmer/util/
  105. StudentManagerWeb/src/com/ischoolbar/programmer/util/CpachaUtil.java 5.81KB
  106. StudentManagerWeb/src/com/ischoolbar/programmer/util/DateFormatUtil.java 279B
  107. StudentManagerWeb/src/com/ischoolbar/programmer/util/DbUtil.java 1.29KB
  108. StudentManagerWeb/src/com/ischoolbar/programmer/util/SnGenerateUtil.java 344B
  109. StudentManagerWeb/src/com/ischoolbar/programmer/util/StringUtil.java 179B
  110. StudentManagerWeb/WebContent/
  111. StudentManagerWeb/WebContent/404.jsp 729B
  112. StudentManagerWeb/WebContent/500.jsp 696B
  113. StudentManagerWeb/WebContent/easyui/
  114. StudentManagerWeb/WebContent/easyui/css/
  115. StudentManagerWeb/WebContent/easyui/css/default.css 2.31KB
  116. StudentManagerWeb/WebContent/easyui/css/demo.css 285B
  117. StudentManagerWeb/WebContent/easyui/jquery.easyui.min.js 356.96KB
  118. StudentManagerWeb/WebContent/easyui/jquery.min.js 91.44KB
  119. StudentManagerWeb/WebContent/easyui/js/
  120. StudentManagerWeb/WebContent/easyui/js/echarts.common.min.js 442.36KB
  121. StudentManagerWeb/WebContent/easyui/js/outlook2.js 4.08KB
  122. StudentManagerWeb/WebContent/easyui/js/validateExtends.js 4.91KB
  123. StudentManagerWeb/WebContent/easyui/themes/
  124. StudentManagerWeb/WebContent/easyui/themes/color.css 3.85KB
  125. StudentManagerWeb/WebContent/easyui/themes/default/
  126. StudentManagerWeb/WebContent/easyui/themes/default/accordion.css 838B
  127. StudentManagerWeb/WebContent/easyui/themes/default/calendar.css 3.69KB
  128. StudentManagerWeb/WebContent/easyui/themes/default/combo.css 1.03KB
  129. StudentManagerWeb/WebContent/easyui/themes/default/combobox.css 396B
  130. StudentManagerWeb/WebContent/easyui/themes/default/datagrid.css 5.12KB
  131. StudentManagerWeb/WebContent/easyui/themes/default/datalist.css 1.79KB
  132. StudentManagerWeb/WebContent/easyui/themes/default/datebox.css 619B
  133. StudentManagerWeb/WebContent/easyui/themes/default/dialog.css 560B
  134. StudentManagerWeb/WebContent/easyui/themes/default/easyui.css 54.28KB
  135. StudentManagerWeb/WebContent/easyui/themes/default/filebox.css 306B
  136. StudentManagerWeb/WebContent/easyui/themes/default/images/
  137. StudentManagerWeb/WebContent/easyui/themes/default/images/accordion_arrows.png 184B
  138. StudentManagerWeb/WebContent/easyui/themes/default/images/blank.gif 43B
  139. StudentManagerWeb/WebContent/easyui/themes/default/images/calendar_arrows.png 173B
  140. StudentManagerWeb/WebContent/easyui/themes/default/images/combo_arrow.png 117B
  141. StudentManagerWeb/WebContent/easyui/themes/default/images/datagrid_icons.png 220B
  142. StudentManagerWeb/WebContent/easyui/themes/default/images/datebox_arrow.png 626B
  143. StudentManagerWeb/WebContent/easyui/themes/default/images/layout_arrows.png 319B
  144. StudentManagerWeb/WebContent/easyui/themes/default/images/linkbutton_bg.png 1.24KB
  145. StudentManagerWeb/WebContent/easyui/themes/default/images/loading.gif 1.7KB
  146. StudentManagerWeb/WebContent/easyui/themes/default/images/menu_arrows.png 160B
  147. StudentManagerWeb/WebContent/easyui/themes/default/images/messager_icons.png 5.97KB
  148. StudentManagerWeb/WebContent/easyui/themes/default/images/pagination_icons.png 628B
  149. StudentManagerWeb/WebContent/easyui/themes/default/images/panel_tools.png 852B
  150. StudentManagerWeb/WebContent/easyui/themes/default/images/searchbox_button.png 813B
  151. StudentManagerWeb/WebContent/easyui/themes/default/images/slider_handle.png 863B
  152. StudentManagerWeb/WebContent/easyui/themes/default/images/spinner_arrows.png 115B
  153. StudentManagerWeb/WebContent/easyui/themes/default/images/tabs_icons.png 150B
  154. StudentManagerWeb/WebContent/easyui/themes/default/images/tree_icons.png 3.04KB
  155. StudentManagerWeb/WebContent/easyui/themes/default/images/validatebox_warning.png 921B
  156. StudentManagerWeb/WebContent/easyui/themes/default/layout.css 1.65KB
  157. StudentManagerWeb/WebContent/easyui/themes/default/linkbutton.css 4.27KB
  158. StudentManagerWeb/WebContent/easyui/themes/default/menu.css 2.14KB
  159. StudentManagerWeb/WebContent/easyui/themes/default/menubutton.css 1.84KB
  160. StudentManagerWeb/WebContent/easyui/themes/default/messager.css 804B
  161. StudentManagerWeb/WebContent/easyui/themes/default/numberbox.css 128B
  162. StudentManagerWeb/WebContent/easyui/themes/default/pagination.css 1.39KB
  163. StudentManagerWeb/WebContent/easyui/themes/default/panel.css 2.84KB
  164. StudentManagerWeb/WebContent/easyui/themes/default/progressbar.css 653B
  165. StudentManagerWeb/WebContent/easyui/themes/default/propertygrid.css 716B
  166. StudentManagerWeb/WebContent/easyui/themes/default/searchbox.css 1.8KB
  167. StudentManagerWeb/WebContent/easyui/themes/default/slider.css 1.58KB
  168. StudentManagerWeb/WebContent/easyui/themes/default/spinner.css 1.42KB
  169. StudentManagerWeb/WebContent/easyui/themes/default/splitbutton.css 293B
  170. StudentManagerWeb/WebContent/easyui/themes/default/tabs.css 9.33KB
  171. StudentManagerWeb/WebContent/easyui/themes/default/textbox.css 1.76KB
  172. StudentManagerWeb/WebContent/easyui/themes/default/tooltip.css 1.89KB
  173. StudentManagerWeb/WebContent/easyui/themes/default/tree.css 3.4KB
  174. StudentManagerWeb/WebContent/easyui/themes/default/validatebox.css 94B
  175. StudentManagerWeb/WebContent/easyui/themes/default/window.css 2.05KB
  176. StudentManagerWeb/WebContent/easyui/themes/icon.css 4.28KB
  177. StudentManagerWeb/WebContent/easyui/themes/icons/
  178. StudentManagerWeb/WebContent/easyui/themes/icons/2012080412263.png 837B
  179. StudentManagerWeb/WebContent/easyui/themes/icons/asterisk_orange.png 760B
  180. StudentManagerWeb/WebContent/easyui/themes/icons/back.png 912B
  181. StudentManagerWeb/WebContent/easyui/themes/icons/basket_remove.png 738B
  182. StudentManagerWeb/WebContent/easyui/themes/icons/blank.gif 43B
  183. StudentManagerWeb/WebContent/easyui/themes/icons/book_add.png 714B
  184. StudentManagerWeb/WebContent/easyui/themes/icons/book_open_mark.png 658B
  185. StudentManagerWeb/WebContent/easyui/themes/icons/book_previous.png 680B
  186. StudentManagerWeb/WebContent/easyui/themes/icons/cancel.png 1.11KB
  187. StudentManagerWeb/WebContent/easyui/themes/icons/chart_bar.png 441B
  188. StudentManagerWeb/WebContent/easyui/themes/icons/clear.png 779B
  189. StudentManagerWeb/WebContent/easyui/themes/icons/cut.png 1KB
  190. StudentManagerWeb/WebContent/easyui/themes/icons/door_out.png 688B
  191. StudentManagerWeb/WebContent/easyui/themes/icons/edit_add.png 1.06KB
  192. StudentManagerWeb/WebContent/easyui/themes/icons/edit_remove.png 625B
  193. StudentManagerWeb/WebContent/easyui/themes/icons/filesave.png 898B
  194. StudentManagerWeb/WebContent/easyui/themes/icons/filter.png 305B
  195. StudentManagerWeb/WebContent/easyui/themes/icons/find.png 659B
  196. StudentManagerWeb/WebContent/easyui/themes/icons/folder_up.png 653B
  197. StudentManagerWeb/WebContent/easyui/themes/icons/help.png 1.16KB
  198. StudentManagerWeb/WebContent/easyui/themes/icons/house.png 806B
  199. StudentManagerWeb/WebContent/easyui/themes/icons/large_chart.png 1.63KB
  200. StudentManagerWeb/WebContent/easyui/themes/icons/large_clipart.png 1.69KB
  201. StudentManagerWeb/WebContent/easyui/themes/icons/large_picture.png 1.63KB
  202. StudentManagerWeb/WebContent/easyui/themes/icons/large_shapes.png 1.29KB
  203. StudentManagerWeb/WebContent/easyui/themes/icons/large_smartart.png 1.3KB
  204. StudentManagerWeb/WebContent/easyui/themes/icons/lock.png 311B
  205. StudentManagerWeb/WebContent/easyui/themes/icons/man.png 244B
  206. StudentManagerWeb/WebContent/easyui/themes/icons/mini_add.png 244B
  207. StudentManagerWeb/WebContent/easyui/themes/icons/mini_edit.png 161B
  208. StudentManagerWeb/WebContent/easyui/themes/icons/mini_refresh.png 160B
  209. StudentManagerWeb/WebContent/easyui/themes/icons/more.png 110B
  210. StudentManagerWeb/WebContent/easyui/themes/icons/no.png 922B
  211. StudentManagerWeb/WebContent/easyui/themes/icons/note.png 500B
  212. StudentManagerWeb/WebContent/easyui/themes/icons/ok.png 883B
  213. StudentManagerWeb/WebContent/easyui/themes/icons/pencil.png 713B
  214. StudentManagerWeb/WebContent/easyui/themes/icons/pencil_add.png 589B
  215. StudentManagerWeb/WebContent/easyui/themes/icons/print.png 1.03KB
  216. StudentManagerWeb/WebContent/easyui/themes/icons/redo.png 708B
  217. StudentManagerWeb/WebContent/easyui/themes/icons/reload.png 1.02KB
  218. StudentManagerWeb/WebContent/easyui/themes/icons/search.png 813B
  219. StudentManagerWeb/WebContent/easyui/themes/icons/set.png 706B
  220. StudentManagerWeb/WebContent/easyui/themes/icons/sum.png 289B
  221. StudentManagerWeb/WebContent/easyui/themes/icons/text_list_bullets.png 344B
  222. StudentManagerWeb/WebContent/easyui/themes/icons/text_list_numbers.png 357B
  223. StudentManagerWeb/WebContent/easyui/themes/icons/tip.png 743B
  224. StudentManagerWeb/WebContent/easyui/themes/icons/undo.png 707B
  225. StudentManagerWeb/WebContent/easyui/themes/icons/user_add.png 746B
  226. StudentManagerWeb/WebContent/easyui/themes/icons/user_gray.png 706B
  227. StudentManagerWeb/WebContent/easyui/themes/icons/user_red.png 717B
  228. StudentManagerWeb/WebContent/easyui/themes/icons/vcard_edit.png 775B
  229. StudentManagerWeb/WebContent/easyui/themes/icons/world.png 923B
  230. StudentManagerWeb/WebContent/easyui/themes/icons/world_add.png 940B
  231. StudentManagerWeb/WebContent/easyui/themes/icons/world_night.png 514B
  232. StudentManagerWeb/WebContent/easyui/themes/icons/zoom_in.png 725B
  233. StudentManagerWeb/WebContent/easyui/themes/locale/
  234. StudentManagerWeb/WebContent/easyui/themes/locale/easyui-lang-zh_CN.js 2.36KB
  235. StudentManagerWeb/WebContent/favicon.ico 1.12KB
  236. StudentManagerWeb/WebContent/file/
  237. StudentManagerWeb/WebContent/file/logo.jpg 7.5KB
  238. StudentManagerWeb/WebContent/h-ui/
  239. StudentManagerWeb/WebContent/h-ui/css/
  240. StudentManagerWeb/WebContent/h-ui/css/H-ui.css 138.73KB
  241. StudentManagerWeb/WebContent/h-ui/css/H-ui.login.css 1.5KB
  242. StudentManagerWeb/WebContent/h-ui/css/H-ui.min.css 98.63KB
  243. StudentManagerWeb/WebContent/h-ui/images/
  244. StudentManagerWeb/WebContent/h-ui/images/acrossTab-2bak.png 5.36KB
  245. StudentManagerWeb/WebContent/h-ui/images/acrossTab-bg.png 1020B
  246. StudentManagerWeb/WebContent/h-ui/images/acrossTab-close.png 1.5KB
  247. StudentManagerWeb/WebContent/h-ui/images/acrossTab.png 11.36KB
  248. StudentManagerWeb/WebContent/h-ui/images/admin-login-bg.jpg 217.14KB
  249. StudentManagerWeb/WebContent/h-ui/images/admin-loginform-bg.png 3.69KB
  250. StudentManagerWeb/WebContent/h-ui/images/gq/
  251. StudentManagerWeb/WebContent/h-ui/images/gq/admin-login-bg.jpg 1.82MB
  252. StudentManagerWeb/WebContent/h-ui/images/gq/cn.gif 366B
  253. StudentManagerWeb/WebContent/h-ui/images/gq/gj.png 3.3KB
  254. StudentManagerWeb/WebContent/h-ui/images/gq/Thumbs.db 4KB
  255. StudentManagerWeb/WebContent/h-ui/images/gq/us.gif 367B
  256. StudentManagerWeb/WebContent/h-ui/images/hamburger-retina.gif 1.4KB
  257. StudentManagerWeb/WebContent/h-ui/images/hamburger.gif 1.14KB
  258. StudentManagerWeb/WebContent/h-ui/images/icon-add.png 1.57KB
  259. StudentManagerWeb/WebContent/h-ui/images/icon_error_s.png 1.65KB
  260. StudentManagerWeb/WebContent/h-ui/images/icon_jt2.png 3.56KB
  261. StudentManagerWeb/WebContent/h-ui/images/icon_right_s.png 1.88KB
  262. StudentManagerWeb/WebContent/h-ui/images/icon_warning_s.png 1.66KB
  263. StudentManagerWeb/WebContent/h-ui/images/loading.gif 8.28KB
  264. StudentManagerWeb/WebContent/h-ui/images/loading_072.gif 3.9KB
  265. StudentManagerWeb/WebContent/h-ui/images/sort_asc.png 1.09KB
  266. StudentManagerWeb/WebContent/h-ui/images/sort_both.png 1.11KB
  267. StudentManagerWeb/WebContent/h-ui/images/sort_desc.png 1.1KB
  268. StudentManagerWeb/WebContent/h-ui/images/Thumbs.db 56KB
  269. StudentManagerWeb/WebContent/h-ui/images/totop.png 465B
  270. StudentManagerWeb/WebContent/h-ui/images/user.png 3.91KB
  271. StudentManagerWeb/WebContent/h-ui/js/
  272. StudentManagerWeb/WebContent/h-ui/js/H-ui.admin.js 5.24KB
  273. StudentManagerWeb/WebContent/h-ui/js/H-ui.js 19.1KB
  274. StudentManagerWeb/WebContent/h-ui/lib/
  275. StudentManagerWeb/WebContent/h-ui/lib/Hui-iconfont/
  276. StudentManagerWeb/WebContent/h-ui/lib/Hui-iconfont/1.0.1/
  277. StudentManagerWeb/WebContent/h-ui/lib/Hui-iconfont/1.0.1/demo.html 43.46KB
  278. StudentManagerWeb/WebContent/h-ui/lib/Hui-iconfont/1.0.1/iconfont.css 11.88KB
  279. StudentManagerWeb/WebContent/h-ui/lib/Hui-iconfont/1.0.1/iconfont.eot 92.12KB
  280. StudentManagerWeb/WebContent/h-ui/lib/Hui-iconfont/1.0.1/iconfont.svg 162.76KB
  281. StudentManagerWeb/WebContent/h-ui/lib/Hui-iconfont/1.0.1/iconfont.ttf 91.82KB
  282. StudentManagerWeb/WebContent/h-ui/lib/Hui-iconfont/1.0.1/iconfont.woff 61.2KB
  283. StudentManagerWeb/WebContent/h-ui/lib/icheck/
  284. StudentManagerWeb/WebContent/h-ui/lib/icheck/aero.png 1.12KB
  285. StudentManagerWeb/WebContent/h-ui/lib/icheck/aero@2x.png 1.38KB
  286. StudentManagerWeb/WebContent/h-ui/lib/icheck/blue.png 1.11KB
  287. StudentManagerWeb/WebContent/h-ui/lib/icheck/blue@2x.png 1.38KB
  288. StudentManagerWeb/WebContent/h-ui/lib/icheck/green.png 1.12KB
  289. StudentManagerWeb/WebContent/h-ui/lib/icheck/green@2x.png 1.38KB
  290. StudentManagerWeb/WebContent/h-ui/lib/icheck/grey.png 1.12KB
  291. StudentManagerWeb/WebContent/h-ui/lib/icheck/grey@2x.png 1.37KB
  292. StudentManagerWeb/WebContent/h-ui/lib/icheck/icheck.css 11.73KB
  293. StudentManagerWeb/WebContent/h-ui/lib/icheck/jquery.icheck.min.js 3.85KB
  294. StudentManagerWeb/WebContent/h-ui/lib/icheck/minimal.png 1.09KB
  295. StudentManagerWeb/WebContent/h-ui/lib/icheck/minimal@2x.png 1.38KB
  296. StudentManagerWeb/WebContent/h-ui/lib/icheck/orange.png 1.11KB
  297. StudentManagerWeb/WebContent/h-ui/lib/icheck/orange@2x.png 1.37KB
  298. StudentManagerWeb/WebContent/h-ui/lib/icheck/pink.png 1.12KB
  299. StudentManagerWeb/WebContent/h-ui/lib/icheck/pink@2x.png 1.38KB
  300. StudentManagerWeb/WebContent/h-ui/lib/icheck/purple.png 1.11KB
  301. StudentManagerWeb/WebContent/h-ui/lib/icheck/purple@2x.png 1.38KB
  302. StudentManagerWeb/WebContent/h-ui/lib/icheck/red.png 1.1KB
  303. StudentManagerWeb/WebContent/h-ui/lib/icheck/red@2x.png 1.38KB
  304. StudentManagerWeb/WebContent/h-ui/lib/icheck/Thumbs.db 18KB
  305. StudentManagerWeb/WebContent/h-ui/lib/icheck/yellow.png 1.11KB
  306. StudentManagerWeb/WebContent/h-ui/lib/icheck/yellow@2x.png 1.37KB
  307. StudentManagerWeb/WebContent/h-ui/lib/jquery/
  308. StudentManagerWeb/WebContent/h-ui/lib/jquery/1.9.1/
  309. StudentManagerWeb/WebContent/h-ui/lib/jquery/1.9.1/jquery.js 262.09KB
  310. StudentManagerWeb/WebContent/h-ui/lib/jquery/1.9.1/jquery.min.js 90.46KB
  311. StudentManagerWeb/WebContent/h-ui/skin/
  312. StudentManagerWeb/WebContent/h-ui/skin/default/
  313. StudentManagerWeb/WebContent/h-ui/skin/default/acrossTab-bg.png 1020B
  314. StudentManagerWeb/WebContent/h-ui/skin/default/acrossTab.png 11.36KB
  315. StudentManagerWeb/WebContent/h-ui/skin/default/icon_arrow.png 1.45KB
  316. StudentManagerWeb/WebContent/h-ui/skin/default/skin.css 1.3KB
  317. StudentManagerWeb/WebContent/h-ui/skin/default/Thumbs.db 12.5KB
  318. StudentManagerWeb/WebContent/index.jsp 141B
  319. StudentManagerWeb/WebContent/META-INF/
  320. StudentManagerWeb/WebContent/META-INF/MANIFEST.MF 36B
  321. StudentManagerWeb/WebContent/view/
  322. StudentManagerWeb/WebContent/view/attendanceList.jsp 12.24KB
  323. StudentManagerWeb/WebContent/view/clazzList.jsp 9.54KB
  324. StudentManagerWeb/WebContent/view/courseList.jsp 14.26KB
  325. StudentManagerWeb/WebContent/view/leaveList.jsp 16.91KB
  326. StudentManagerWeb/WebContent/view/login.jsp 4.61KB
  327. StudentManagerWeb/WebContent/view/personalView.jsp 4.56KB
  328. StudentManagerWeb/WebContent/view/scoreList.jsp 18.4KB
  329. StudentManagerWeb/WebContent/view/scoreStats.jsp 5.03KB
  330. StudentManagerWeb/WebContent/view/selectedCourseList.jsp 10.07KB
  331. StudentManagerWeb/WebContent/view/studentList.jsp 17.35KB
  332. StudentManagerWeb/WebContent/view/system.jsp 4.98KB
  333. StudentManagerWeb/WebContent/view/teacherList.jsp 17.56KB
  334. StudentManagerWeb/WebContent/view/welcome.jsp 572B
  335. StudentManagerWeb/WebContent/WEB-INF/
  336. StudentManagerWeb/WebContent/WEB-INF/lib/
  337. StudentManagerWeb/WebContent/WEB-INF/lib/commons-beanutils-1.8.0.jar 225.9KB
  338. StudentManagerWeb/WebContent/WEB-INF/lib/commons-beanutils-1.8.3.jar 226.58KB
  339. StudentManagerWeb/WebContent/WEB-INF/lib/commons-collections-3.2.1.jar 561.9KB
  340. StudentManagerWeb/WebContent/WEB-INF/lib/commons-dbutils-1.6.jar 76.03KB
  341. StudentManagerWeb/WebContent/WEB-INF/lib/commons-fileupload-1.2.1.jar 56.42KB
  342. StudentManagerWeb/WebContent/WEB-INF/lib/commons-io-1.4.jar 106.49KB
  343. StudentManagerWeb/WebContent/WEB-INF/lib/commons-lang-2.5.jar 272.65KB
  344. StudentManagerWeb/WebContent/WEB-INF/lib/commons-logging-1.1.1.jar 59.42KB
  345. StudentManagerWeb/WebContent/WEB-INF/lib/commons-logging.jar 59.42KB
  346. StudentManagerWeb/WebContent/WEB-INF/lib/ezmorph-1.0.6.jar 84.46KB
  347. StudentManagerWeb/WebContent/WEB-INF/lib/FilelLoad.jar 9.67KB
  348. StudentManagerWeb/WebContent/WEB-INF/lib/json-lib-2.3-jdk15.jar 148.28KB
  349. StudentManagerWeb/WebContent/WEB-INF/lib/jsonplugin-0.34.jar 46.34KB
  350. StudentManagerWeb/WebContent/WEB-INF/lib/jstl.jar 20.2KB
  351. StudentManagerWeb/WebContent/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar 693.28KB
  352. StudentManagerWeb/WebContent/WEB-INF/lib/poi-3.9.jar 1.78MB
  353. StudentManagerWeb/WebContent/WEB-INF/lib/standard.jar 384.04KB
  354. StudentManagerWeb/WebContent/WEB-INF/web.xml 5.83KB
0评论
提交 加载更多评论
其他资源 精品java实现的学校教务管理系统
基于Maven的学校教务管理系统,快速部署运行,所用技术 MVC框架/MySQL/JavaBean/Servlet/Maven/Jsp/Bootstrap/Ajax/Jquery/Tomcat。 本系统利用Java Web技术实现了学校教务管理系统,具有简单的学生信息管理和教师信息管理功能。 作为学校教务管理系统的核心组成部分之一,教务系统管理主要分为三大模块,一是管理员管理模块、二是学生用户模块、三是教师用户模块,其中三大模块内具体又分多个不同的模块管理,实现了对整个管理系统的一站式管理和维护。 所有页面均兼容IE10及以上现代浏览器。 软件架构 MVC框架、MySQL、JavaBean、Servlet、Maven、Jsp、Bootstrap、Ajax、Jquery、Tomcat8。 项目默认运行地址 地址:http://localhost:8080/school 部署方式 项目使用IDEA开发,请使用IDEA的版本控制检出功能,输入“https://gitee.com/lihaihuaa/school.git”拉取项目即可。 项目使用Eclipse、STS开发,请使用相应的
基于javaweb学生课程管理系统
易管•学生课程管理系统 易管从客户资料管理系统,到信息管理系统,再到学生课程管理系统,不断完善中,我的专业知识水平也不断提升。 环境 java version 1.8.0_251 (jdk1.8) MariaDB 10.4.10 (MySQL 5.7及更新) 开始 数据库配置。 创建数据库course_manage_system,服务器连接排序规则为utf8_general_cii或者utf8mb4_general_ci 导入数据库文件course_manage_system.sql 使用IntelliJ IDEA打开项目文件(Eclipse等其他编辑器未经过验证),点击右上角运行'Application' 或者按组合快捷键Shift + F10。 浏览器打开http://localhost:8080/。项目运行正常。
基于javaweb学生课程管理系统 基于javaweb学生课程管理系统
vue+springboot学生管理系统
Student Information System 作品介绍 本项目分为老师和学生两个分支。 有密码的学生可自行登录,查看自己的个人信息及个人成绩 老师分支则主要实现对学生信息的管理,通过学生信息管理系统能够进行学生信息的增加,浏览,查询,删除,统计等功能,实现学生信息管理工作的系统化和自动化 本项目总体采用前后端分离的设计理念。同时 前端利用vue(uniapp)框架强大的生态及组件可复用性,来快速使本项目变成单页面应用及实现路由等功能 适应不同设备方面,考虑页面功能及用户使用方面,并未设计成响应式,而是利用前端路由,进行不同端的页面跳转 技术栈介绍 前端: • web端:vue(vue-router+vue-cookies)+echarts+axios+element-ui • 小程序端/app端:uniapp+ucharts; – 小程序端采用时下较流行且号称能够一次开发全端运行的uniapp框架。 – 目前只完全适配微信小程序端,其他端可能有或多或少的bug也可能没有bug. 后端: • 主体:springboot • 数据源:druid • 日志:l
仓库管理系统的后端实现
wms仓库管理系统 项目简介: 简单的仓储管理系统,能对商品种类、商品库存、 采购、货位、入库、出库、盘点等仓储动作和数据进行监控, 提升WMS的管理效益。 仓库管理,进销存系统 主要模块有采购管理、销售管理、仓库管理、报表查询、 系统管理等。拥有库存状况、出入库统计等报表。同时对角色和权限进行了细致全面控制 仓库管理系统 在线地址 http://148.70.120.105:8002/login/index 类型 账号 密码 普通 admin admin 管理员 bool admin 桌面版下载 (.exe) ==注: 暂时只提供windows版 下载== 网盘 地址 密码 90网盘 https://www.90pan.com/b1586379 e717 城通网盘 https://t00y.com/file/23130714-415442373 396180 ThinkPHP 5.1wms仓库管理系统 本系统其主要特性包括: 采购管理 销售管理 库位管理 预警提示 api接口 报表查询 系统管理 库存状况 出入库统计 财务管理 语音提示、语音播报 设备管理:扫码枪、盘点机 第
基于springboot的师生共评的作业管理系统
介绍 基于Spring Boot的师生共评作业管理系统是一个旨在提高作业管理效率、促进师生互动与沟通的教育信息化平台。该系统采用现代化的Web开发技术,结合Spring Boot框架的轻量级、快速开发特性,为教师和学生提供了一个便捷、高效、安全的作业管理环境。系统支持教师发布作业、管理课程、进行作业评分与互评,同时也支持学生完成作业、参与互评、查看成绩等操作,从而实现了师生之间的紧密协作和高效反馈。 技术栈 后端技术栈:Springboot+Mysql+Maven 前端技术栈:Vue+Html+Css+Javascript+ElementUI 开发工具:Idea+Vscode+Navicate 系统功能介绍 教师模块 课程管理:教师可以创建、编辑、删除课程信息,包括课程名称、课程描述、上课时间等。 作业管理:教师可以发布作业,设置作业要求、截止日期等,并能随时查看作业提交情况。 作业互评管理:教师能启动作业互评功能,设定互评规则,并监控互评进度。 作业评分管理:教师可以对作业进行评分,支持手动评分和自动评分两种方式。 作业提交管理:教师能查看学生作业提交情况,对未按时提交的学生进
鈺吙視頻_v8.43_去广解锁版 (1).zip
鈺吙視頻_v8.43_去广解锁版 (1).zip
基于web和小程序的高校科创比赛报名管理系统
基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛报名管理系统基于web和小程序的高校科创比赛
基于SpringBoot+vue实现的旅游景点项目
后台旅游景点分类、旅游笔记,前台首页、景点详情、收藏/ 后端旅游景点分类 前台旅游景点收藏后端 详情页改 前台旅游线路点赞 前台旅游攻略发布 后台旅游景点分类、旅游笔记,前台首页、景点详情、收藏 前台旅游景点更改 用户管理前端+用户登录、注册、个人信息、修改密码功能 后台旅游景点分类、旅游笔记,前台首页、景点详情、收藏/ 后端旅游景点分类 前台旅游景点收藏后端 详情页改 前台旅游线路点赞 前台旅游攻略发布 后台旅游景点分类、旅游笔记,前台首页、景点详情、收藏 前台旅游景点更改 用户管理前端+用户登录、注册、个人信息、修改密码功能 后台旅游景点分类、旅游笔记,前台首页、景点详情、收藏/ 后端旅游景点分类 前台旅游景点收藏后端 详情页改 前台旅游线路点赞 前台旅游攻略发布 后台旅游景点分类、旅游笔记,前台首页、景点详情、收藏 前台旅游景点更改 用户管理前端+用户登录、注册、个人信息、修改密码功能
基于SpringBoot+vue实现的旅游景点项目 基于SpringBoot+vue实现的旅游景点项目 基于SpringBoot+vue实现的旅游景点项目