springboot项目教务系统

时间: 2023-06-16 18:05:18 浏览: 105
好的,下面是一个简单的教务系统的Spring Boot项目实现。 1. 创建Spring Boot项目 首先,在你的IDE中创建一个Spring Boot项目。你可以使用Spring Initializr或者手动创建。如果你使用Spring Initializr,可以选择Web和Thymeleaf模板引擎的依赖。 2. 添加依赖 在你的项目`pom.xml`文件中添加以下依赖: ```xml <!-- MySQL connector --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <!-- Spring Data JPA --> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> </dependency> <!-- Thymeleaf --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> ``` 3. 配置数据库 在`application.properties`文件中添加以下配置: ```properties spring.datasource.url=jdbc:mysql://localhost:3306/edu_system?useSSL=false&serverTimezone=UTC spring.datasource.username=root spring.datasource.password=123456 spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.jpa.hibernate.ddl-auto=update ``` 其中,`edu_system`是你的数据库名称,`root`和`123456`是你的数据库用户名和密码。 4. 创建数据模型 创建一个学生(`Student`)和课程(`Course`)的实体类。 ```java @Entity public class Student { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String name; private Integer age; // Getters and Setters } @Entity public class Course { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String name; private Integer credit; // Getters and Setters } ``` 5. 创建数据访问层 创建一个学生(`StudentRepository`)和课程(`CourseRepository`)的接口,继承`JpaRepository`。 ```java public interface StudentRepository extends JpaRepository<Student, Long> { } public interface CourseRepository extends JpaRepository<Course, Long> { } ``` 6. 创建服务层 创建一个学生(`StudentService`)和课程(`CourseService`)的服务类,用于处理业务逻辑。 ```java @Service public class StudentService { @Autowired private StudentRepository studentRepository; public List<Student> getAllStudents() { return studentRepository.findAll(); } public Student getStudentById(Long id) { return studentRepository.findById(id).orElse(null); } public void addStudent(Student student) { studentRepository.save(student); } public void updateStudent(Student student) { studentRepository.save(student); } public void deleteStudent(Long id) { studentRepository.deleteById(id); } } @Service public class CourseService { @Autowired private CourseRepository courseRepository; public List<Course> getAllCourses() { return courseRepository.findAll(); } public Course getCourseById(Long id) { return courseRepository.findById(id).orElse(null); } public void addCourse(Course course) { courseRepository.save(course); } public void updateCourse(Course course) { courseRepository.save(course); } public void deleteCourse(Long id) { courseRepository.deleteById(id); } } ``` 7. 创建控制器 创建一个学生(`StudentController`)和课程(`CourseController`)的控制器,用于处理客户端请求。 ```java @Controller public class StudentController { @Autowired private StudentService studentService; @GetMapping("/students") public String getAllStudents(Model model) { List<Student> students = studentService.getAllStudents(); model.addAttribute("students", students); return "students"; } @GetMapping("/students/{id}") public String getStudentById(@PathVariable Long id, Model model) { Student student = studentService.getStudentById(id); model.addAttribute("student", student); return "student"; } @GetMapping("/students/new") public String addStudent(Model model) { model.addAttribute("student", new Student()); return "add-student"; } @PostMapping("/students") public String saveStudent(@ModelAttribute("student") Student student) { studentService.addStudent(student); return "redirect:/students"; } @GetMapping("/students/{id}/edit") public String editStudent(@PathVariable Long id, Model model) { Student student = studentService.getStudentById(id); model.addAttribute("student", student); return "edit-student"; } @PostMapping("/students/{id}") public String updateStudent(@PathVariable Long id, @ModelAttribute("student") Student student) { student.setId(id); studentService.updateStudent(student); return "redirect:/students"; } @GetMapping("/students/{id}/delete") public String deleteStudent(@PathVariable Long id) { studentService.deleteStudent(id); return "redirect:/students"; } } @Controller public class CourseController { @Autowired private CourseService courseService; @GetMapping("/courses") public String getAllCourses(Model model) { List<Course> courses = courseService.getAllCourses(); model.addAttribute("courses", courses); return "courses"; } @GetMapping("/courses/{id}") public String getCourseById(@PathVariable Long id, Model model) { Course course = courseService.getCourseById(id); model.addAttribute("course", course); return "course"; } @GetMapping("/courses/new") public String addCourse(Model model) { model.addAttribute("course", new Course()); return "add-course"; } @PostMapping("/courses") public String saveCourse(@ModelAttribute("course") Course course) { courseService.addCourse(course); return "redirect:/courses"; } @GetMapping("/courses/{id}/edit") public String editCourse(@PathVariable Long id, Model model) { Course course = courseService.getCourseById(id); model.addAttribute("course", course); return "edit-course"; } @PostMapping("/courses/{id}") public String updateCourse(@PathVariable Long id, @ModelAttribute("course") Course course) { course.setId(id); courseService.updateCourse(course); return "redirect:/courses"; } @GetMapping("/courses/{id}/delete") public String deleteCourse(@PathVariable Long id) { courseService.deleteCourse(id); return "redirect:/courses"; } } ``` 8. 创建Thymeleaf视图 创建一个学生(`students.html`、`student.html`、`add-student.html`、`edit-student.html`)和课程(`courses.html`、`course.html`、`add-course.html`、`edit-course.html`)的Thymeleaf视图。 students.html: ```html <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Students</title> </head> <body> <h1>Students</h1> <p><a href="/students/new">Add Student</a></p> <table> <thead> <tr> <th>ID</th> <th>Name</th> <th>Age</th> <th>Actions</th> </tr> </thead> <tbody> <tr th:each="student : ${students}"> <td th:text="${student.id}"></td> <td th:text="${student.name}"></td> <td th:text="${student.age}"></td> <td> <a th:href="@{/students/{id}(id=${student.id})}">View</a> <a th:href="@{/students/{id}/edit(id=${student.id})}">Edit</a> <a th:href="@{/students/{id}/delete(id=${student.id})}">Delete</a> </td> </tr> </tbody> </table> </body> </html> ``` student.html: ```html <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Student</title> </head> <body> <h1 th:text="${student.name}"></h1> <p>ID: <span th:text="${student.id}"></span></p> <p>Name: <span th:text="${student.name}"></span></p> <p>Age: <span th:text="${student.age}"></span></p> </body> </html> ``` add-student.html: ```html <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Add Student</title> </head> <body> <h1>Add Student</h1> <form th:action="@{/students}" th:object="${student}" method="post"> <p> <label>Name</label> <input type="text" th:field="*{name}"> </p> <p> <label>Age</label> <input type="text" th:field="*{age}"> </p> <p> <button type="submit">Add</button> </p> </form> </body> </html> ``` edit-student.html: ```html <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Edit Student</title> </head> <body> <h1>Edit Student</h1> <form th:action="@{/students/{id}(id=${student.id})}" th:object="${student}" method="post"> <p> <label>Name</label> <input type="text" th:field="*{name}"> </p> <p> <label>Age</label> <input type="text" th:field="*{age}"> </p> <p> <button type="submit">Save</button> </p> </form> </body> </html> ``` courses.html: ```html <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Courses</title> </head> <body> <h1>Courses</h1> <p><a href="/courses/new">Add Course</a></p> <table> <thead> <tr> <th>ID</th> <th>Name</th> <th>Credit</th> <th>Actions</th> </tr> </thead> <tbody> <tr th:each="course : ${courses}"> <td th:text="${course.id}"></td> <td th:text="${course.name}"></td> <td th:text="${course.credit}"></td> <td> <a th:href="@{/courses/{id}(id=${course.id})}">View</a> <a th:href="@{/courses/{id}/edit(id=${course.id})}">Edit</a> <a th:href="@{/courses/{id}/delete(id=${course.id})}">Delete</a> </td> </tr> </tbody> </table> </body> </html> ``` course.html: ```html <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Course</title> </head> <body> <h1 th:text="${course.name}"></h1> <p>ID: <span th:text="${course.id}"></span></p> <p>Name: <span th:text="${course.name}"></span></p> <p>Credit: <span th:text="${course.credit}"></span></p> </body> </html> ``` add-course.html: ```html <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Add Course</title> </head> <body> <h1>Add Course</h1> <form th:action="@{/courses}" th:object="${course}" method="post"> <p> <label>Name</label> <input type="text" th:field="*{name}"> </p> <p> <label>Credit</label> <input type="text" th:field="*{credit}"> </p> <p> <button type="submit">Add</button> </p> </form> </body> </html> ``` edit-course.html: ```html <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Edit Course</title> </head> <body> <h1>Edit Course</h1> <form th:action="@{/courses/{id}(id=${course.id})}" th:object="${course}" method="post"> <p> <label>Name</label> <input type="text" th:field="*{name}"> </p> <p> <label>Credit</label> <input type="text" th:field="*{credit}"> </p> <p> <button type="submit">Save</button> </p> </form> </body> </html> ``` 9. 启动应用程序 现在,你可以启动应用程序并访问`http://localhost:8080/students`和`http://localhost:8080/courses`来测试你的应用程序了。 以上就是一个简单的教务系统的Spring Boot项目的实现。当然,这只是一个基础的实现,你可以根据自己的需求进行扩展和优化。
阅读全文

相关推荐

最新推荐

recommend-type

Java 实现简易教务管理系统的代码

Java 实现简易教务管理系统的代码 在本文中,我们将介绍Java实现简易教务管理系统的代码,该系统旨在提供一个基本的教务管理功能,包括学生、课程、教师等信息的管理。下面是该系统的主要知识点: 1. Java基础知识...
recommend-type

C语言编写教务管理系统

C语言编写教务管理系统 C语言编写教务管理系统是使用C语言编写的一个教务管理系统,旨在帮助学校管理学生的基本信息和课程成绩。该系统具有录入、修改、删除、查询和统计等功能,可以满足学校的日常教学管理需求。 ...
recommend-type

太原理工大学软件工程导论教务管理系统实验报告

每个学期的期中,学校教务处会分类向各个学院发出下各学期的教学计划,包括课程名称、课程代码、课时、班级类别(本科、专科、成人教育、研究生)、班号等;学院教学主管人员根据教学任务要求给出各门课程的相关限制...
recommend-type

教务管理系统分析设计方案

教务管理系统是高等教育机构或学校日常运营的关键组成部分,其目标是提升教学管理的效率和质量。在系统分析阶段,我们需要明确以下几个方面: 2.1 功能需求 教务管理系统应提供以下核心功能: - 学生管理:包括新生...
recommend-type

俄罗斯RTSD数据集实现交通标志实时检测

资源摘要信息:"实时交通标志检测" 在当今社会,随着道路网络的不断扩展和汽车数量的急剧增加,交通标志的正确识别对于驾驶安全具有极其重要的意义。为了提升自动驾驶汽车或辅助驾驶系统的性能,研究者们开发了各种算法来实现实时交通标志检测。本文将详细介绍一项关于实时交通标志检测的研究工作及其相关技术和应用。 ### 俄罗斯交通标志数据集(RTSD) 俄罗斯交通标志数据集(RTSD)是专门为训练和测试交通标志识别算法而设计的数据集。数据集内容丰富,包含了大量的带标记帧、交通符号类别、实际的物理交通标志以及符号图像。具体来看,数据集提供了以下重要信息: - 179138个带标记的帧:这些帧来源于实际的道路视频,每个帧中可能包含一个或多个交通标志,每个标志都经过了精确的标注和分类。 - 156个符号类别:涵盖了俄罗斯境内常用的各种交通标志,每个类别都有对应的图像样本。 - 15630个物理符号:这些是实际存在的交通标志实物,用于训练和验证算法的准确性。 - 104358个符号图像:这是一系列经过人工标记的交通标志图片,可以用于机器学习模型的训练。 ### 实时交通标志检测模型 在该领域中,深度学习模型尤其是卷积神经网络(CNN)已经成为实现交通标志检测的关键技术。在描述中提到了使用了yolo4-tiny模型。YOLO(You Only Look Once)是一种流行的实时目标检测系统,YOLO4-tiny是YOLO系列的一个轻量级版本,它在保持较高准确率的同时大幅度减少计算资源的需求,适合在嵌入式设备或具有计算能力限制的环境中使用。 ### YOLO4-tiny模型的特性和优势 - **实时性**:YOLO模型能够实时检测图像中的对象,处理速度远超传统的目标检测算法。 - **准确性**:尽管是轻量级模型,YOLO4-tiny在多数情况下仍能保持较高的检测准确性。 - **易集成**:适用于各种应用,包括移动设备和嵌入式系统,易于集成到不同的项目中。 - **可扩展性**:模型可以针对特定的应用场景进行微调,提高特定类别目标的检测精度。 ### 应用场景 实时交通标志检测技术的应用范围非常广泛,包括但不限于: - 自动驾驶汽车:在自动驾驶系统中,能够实时准确地识别交通标志是保证行车安全的基础。 - 智能交通系统:交通标志的实时检测可以用于交通流量监控、违规检测等。 - 辅助驾驶系统:在辅助驾驶系统中,交通标志的自动检测可以帮助驾驶员更好地遵守交通规则,提升行驶安全。 - 车辆导航系统:通过实时识别交通标志,导航系统可以提供更加精确的路线规划和预警服务。 ### 关键技术点 - **图像处理技术**:包括图像采集、预处理、增强等步骤,为后续的识别模型提供高质量的输入。 - **深度学习技术**:利用深度学习尤其是卷积神经网络(CNN)进行特征提取和模式识别。 - **数据集构建**:构建大规模、多样化的高质量数据集对于训练准确的模型至关重要。 ### 结论 本文介绍的俄罗斯交通标志数据集以及使用YOLO4-tiny模型进行实时交通标志检测的研究工作,显示了在该领域应用最新技术的可能性。随着计算机视觉技术的不断进步,实时交通标志检测算法将变得更加准确和高效,进一步推动自动驾驶和智能交通的发展。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

预测区间与置信区间:机器学习中的差异与联系

# 1. 机器学习中的统计基础 在当今数据驱动的时代,机器学习已经成为了理解大数据的关键途径。在这一章节中,我们将探索机器学习与统计学之间密不可分的关系,重点介绍统计学在机器学习中的核心地位及其应用。我们将从最基本的统计概念入手,为读者建立起机器学习中的统计基础。 ## 1.1 统计学的核心概念 统计学为我们提供了一套强大的工具,用以描述、分析以及从数据中得出结论。核心概念包括均值、方差、标准差等描述性统计指标,它们是理解数据集基本特征的关键。 ## 1.2 统计推断基础 统计推断是建立在概率论基础上的,允许我们在有限的数据样本上做出关于整体的结论。我们将解释置信区间和假设检验等基本概念
recommend-type

基于KNN通过摄像头实现0-9的识别python代码

基于KNN(K-Nearest Neighbors,最近邻算法)实现摄像头实时抓取图像并识别0-9数字的Python代码需要几个步骤,包括数据预处理、训练模型和实际应用。这里是一个简化版本的示例: ```python # 导入必要的库 import cv2 from sklearn.neighbors import KNeighborsClassifier import numpy as np # 数据预处理:假设你已经有一个包含手写数字的训练集 # 这里只是一个简化的例子,实际情况下你需要一个完整的图像数据集 # X_train (特征矩阵) 和 y_train (标签) X_train
recommend-type

易语言开发的文件批量改名工具使用Ex_Dui美化界面

资源摘要信息:"文件批量改名工具-易语言"是一个专门用于批量修改文件名的软件工具,它采用的编程语言是“易语言”,该语言是为中文用户设计的,其特点是使用中文作为编程关键字,使得中文用户能够更加容易地编写程序代码。该工具在用户界面上使用了Ex_Dui库进行美化,Ex_Dui是一个基于易语言开发的UI界面库,能够让开发的应用程序界面更美观、更具有现代感,增加了用户体验的舒适度。 【易语言知识点】: 易语言是一种简单易学的编程语言,特别适合没有编程基础的初学者。它采用了全中文的关键字和语法结构,支持面向对象的编程方式。易语言支持Windows平台的应用开发,并且可以轻松调用Windows API,实现复杂的功能。易语言的开发环境提供了丰富的组件和模块,使得开发各种应用程序变得更加高效。 【Ex_Dui知识点】: Ex_Dui是一个专为易语言设计的UI(用户界面)库,它为易语言开发的应用程序提供了大量的预制控件和风格,允许开发者快速地制作出外观漂亮、操作流畅的界面。使用Ex_Dui库可以避免编写繁琐的界面绘制代码,提高开发效率,同时使得最终的软件产品能够更加吸引用户。 【开源大赛知识点】: 2019开源大赛(第四届)是指在2019年举行的第四届开源软件开发竞赛活动。这类活动通常由开源社区或相关组织举办,旨在鼓励开发者贡献开源项目,推广开源文化和技术交流,提高软件开发的透明度和协作性。参与开源大赛的作品往往需要遵循开放源代码的许可协议,允许其他开发者自由使用、修改和分发代码。 【压缩包子文件的文件名称列表知识点】: 文件名称列表中包含了几个关键文件: - libexdui.dll:这显然是一个动态链接库文件,即DLL文件,它是由Ex_Dui库提供的,用于提供程序运行时所需的库函数和资源。DLL文件可以让程序调用相应的函数,实现特定的功能。 - 文件批量改名工具.e:这可能是易语言编写的主程序文件,带有.e扩展名,表明它是一个易语言源代码文件。 - Default.ext:这个文件名没有给出具体扩展名,可能是一个配置文件或默认设置文件,用户可以通过修改它来自定义软件的行为。 - Source:这可能是一个包含易语言源代码的目录,里面应该包含了文件批量改名工具的源代码,供开发者阅读和学习。 - Res:这个目录通常用于存放资源文件,如图形、声音等。在易语言项目中,Res目录下可能存放了程序运行所需的各种资源文件。 通过对标题、描述、标签以及文件名列表的分析,我们可以了解到这款文件批量改名工具采用了易语言编程,并且界面通过Ex_Dui库进行美化。它可能被提交到了2019年第四届开源大赛中,是开发者为用户提供的一个实用工具,用于提高处理文件时的效率。
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依