search
HomeJavajavaTutorialAnalyze the case of student management system implemented in Java.

    Student Management System

    Foreword: This is a course designed for sophomore year (still a student management system...). In theory, although it is 4 people per It was done together with the team, but, pay attention to this "but", I am still responsible for all the code and documents... I basically wrote the code and documents by myself. I was so worried at first that I was vomiting blood. This is why some of the functions of the Web version later Reason for not being completed.

    Project Introduction

    The project is divided into a GUI desktop application written in JavaSwing and a semi-finished Web application. The following figure shows the overall functional structure of the project

    Analyze the case of student management system implemented in Java.

    JavaSwing

    JavaSwing uses the MyBatis Spring framework combination. Later I found that using the Spring framework seemed to be a mistake in programs developed with Swing.

    In addition, there may be some unknown logical bugs in the JavaSwing version.

    Function display

    1. Login module

    Analyze the case of student management system implemented in Java.

    2. System setting module

    Analyze the case of student management system implemented in Java.

    3. Student management module

    Student addition

    Analyze the case of student management system implemented in Java.

    Student list

    Analyze the case of student management system implemented in Java.

    4. Class management module

    Class addition

    Analyze the case of student management system implemented in Java.

    Class management

    Analyze the case of student management system implemented in Java.

    5. Score management

    Score statistics

    Analyze the case of student management system implemented in Java.

    6. Web version

    Click to jump to the browser's http://localhost:8080 URL

    Analyze the case of student management system implemented in Java.

    Instructions for use

    Use IDEA to open the project. The structure of the project is as follows:

    Analyze the case of student management system implemented in Java.

    If you start the project, run LoginFrm in the view package

    Analyze the case of student management system implemented in Java.

    Problems encountered

    Problems encountered when using Spring for dependency injection

    Swing is a Java package for GUI development. In the course, I used Spring to manage the container. However, a problem occurred when using Spring annotations for container dependency injection. The dependency injection was null and the error was reported as follows:

    Exception in thread “AWT-EventQueue-0” java.lang.NullPointerException

    at com.view.LoginFrm.loginAct(LoginFrm.java:187)

    at com.view.LoginFrm$2.actionPerformed(LoginFrm.java:96)

    I searched on Baidu for a long time but could not find the problem. I ruled out that the Spring configuration file was written incorrectly or the @Service annotation was not added. After waiting for the problem, I found an explanation on the Internet, as follows:

    The bean cannot be obtained when using @Autowired in multi-threading.

    The reason is: new thread is not in the Spring container, so it cannot obtain the bean object in Spring

    JavaSwing is not thread-safe. Some places in the project are run by multi-threads, and many UI threads It runs concurrently inside, so Spring injection fails in these threads because they are not Spring-managed threads

    And Spring does not allow annotations to be used to inject dependencies in multi-threaded situations, so we can only manually To get the bean object we want, the code is as follows:

    private final ApplicationContext context = new ClassPathXmlApplicationContext("spring.xml");
    private final AdminService adminService = (AdminServiceImpl)context.getBean("AdminServiceImpl");

    In fact, it can also be managed by configuring the thread pool, but I am not familiar with Swing and don’t know how many threads it has when running.

    This problem was something I didn't expect at first. If I had known it, I wouldn't have used Spring on Swing...because I have to manually obtain dependencies for each view layer class, which is much worse than using it myself. There is no difference in obtaining the dependencies of MyBatis in a singleton mode, but it is more troublesome to use Spring.

    Problems that occur when Mybatis uses HashMap as the result set

    When writing the method to find the specified sign-in, I used List> as the return value, but it displayed an error. The first time it displayed a null pointer error, then I configured the @Results result set as follows:

    @Results({
    @Result(property = "key",column = "attendance_num",jdbcType = JdbcType.INTEGER),
    @Result(property = "value",column = " attendance_date",jdbcType = JdbcType.VARCHAR)})

    But it showed a format conversion error, so I output the query results on the console and found that the result was like this

    [{value=2018-05-17, key=1}, {value=2018-04-17, key=1}, {value=2018-04-18, key=1}, {value=2018- 04-19, key=3}, {value=2018-04-20, key=1}, {value=2018-04-21, key=1}, {value=2018-05-03, key=1} ]

    The value in HashMap has changed from the form of JSON string to the form of xxx=xxx. The property attribute value corresponds to the attribute of the entity class, but the key and vlaue in HashMap cannot be counted. Attribute (I thought wrong), so Mybatis will set an attribute name by itself at this time, so it becomes the above result. Don’t ask why it’s not in the form of an xml file. I didn’t have enough time at the time, so I just used annotations for convenience.

    Solution:

    Reprocess the above result value and assign it to HashMap

    Problems that occur when deleting data associated with foreign keys

    The Service layer in the project reports an error as follows:

    Cannot delete or update a parent row: a foreign key constraint fails (`ttms`.`s_attendance`, CONSTRAINT `student_attendance_foreign` FOREIGN KEY (`student_id`) REFERENCES `s_student` (`id`)); nested exception is java.sql.SQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails (`ttms`.`s_attendance`, CONSTRAINT `student_attendance_foreign` FOREIGN KEY (`student_id`) REFERENCES `s_student` (`id`))

    Check the error Information, the problem lies in the Dao layer. There is a problem with a delete statement. After analyzing the reason, it is found that a foreign key association is set, which prevents us from deleting the data.

    Solution:

    Set the foreign key to invalid before deleting the data, as follows:

    set foreign_key_checks = 0;

    Then you can execute the delete statement at this time

    After deletion, set the foreign key to be valid, as follows:

    set foreign_key_checks = 1;

    This way This record has been deleted perfectly.

    JavaWeb

    JavaWeb The framework combination of SpringBoot Spring Data JPA is used here. The page uses Thymeleaf for data display. There is a statistics page on the page that uses ECharts for data visualization.

    As mentioned earlier, the Web is a semi-finished product. The functions it has implemented mainly include the following functional modules: login, logout, password change, student management, class management, and score management. In addition, the database it uses is the same as the JavaSwing version, so their previous data are actually interoperable.

    Summary: Although the page is a bit ugly, it can be used as a template for continued development.

    Function display

    1. Login interface

    Analyze the case of student management system implemented in Java.

    2. Student management

    Student list

    Analyze the case of student management system implemented in Java.

    Student addition

    Analyze the case of student management system implemented in Java.

    3. Class management

    Class list

    Analyze the case of student management system implemented in Java.

    Class addition

    Analyze the case of student management system implemented in Java.

    4. Score statistics

    Analyze the case of student management system implemented in Java.

    Analyze the case of student management system implemented in Java.

    Analyze the case of student management system implemented in Java.

    Instructions for use

    Project structure diagram:

    Analyze the case of student management system implemented in Java.

    To start, just right-click in the DemoApplication class to start.

    Problems encountered

    Problems encountered when using JPA to update the database

    When using Spring Data JPA to do the content of the persistence layer on the Web side, an error was encountered. As follows:

    Executing an update/delete query

    After searching on Baidu, I found that it is JPA. If you perform update or delete operations, you must use Dao or Service The @Transactional annotation is added to the layer, which means that this is a transaction-level operation. This is equivalent to a usage specification of JPA, because JPA requires that without transaction support, update and delete operations cannot be performed.

    The above is the detailed content of Analyze the case of student management system implemented in Java.. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
    带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

    Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

    完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

    一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

    详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

    本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

    Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

    java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

    封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

    归纳整理JAVA装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    VSCode Windows 64-bit Download

    VSCode Windows 64-bit Download

    A free and powerful IDE editor launched by Microsoft

    MinGW - Minimalist GNU for Windows

    MinGW - Minimalist GNU for Windows

    This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

    PhpStorm Mac version

    PhpStorm Mac version

    The latest (2018.2.1) professional PHP integrated development tool

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.