Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ullenius/backinschool
:school: School Management project. Java EE, JPA and MySQL/mariaDB. Contains 5 entities with bi-directional relationships
https://github.com/ullenius/backinschool
java javaee jpa orm sql
Last synced: 10 days ago
JSON representation
:school: School Management project. Java EE, JPA and MySQL/mariaDB. Contains 5 entities with bi-directional relationships
- Host: GitHub
- URL: https://github.com/ullenius/backinschool
- Owner: ullenius
- Created: 2018-12-14T15:46:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-27T14:33:10.000Z (over 5 years ago)
- Last Synced: 2024-11-08T10:50:40.361Z (2 months ago)
- Topics: java, javaee, jpa, orm, sql
- Language: Java
- Homepage:
- Size: 271 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# :school: Back In School
This is a school project (duration q4 2018-jan 2019). We were instructed to make a School Management System using SQL, JPA, RDBMS (relational database management system) and Java.Please note that this is unfortunately **not** a Java EE project.
As it stands you are required to add external
dependencies manually (Java EE, EclipseLink). However, a demo Meta-inf
persistence file is included.## Features
* Contains **5 entities** with bi-directional relationships
## Requirements
The School management system consists of:1. Students
1. Teachers
1. Courses
1. Educations- Each teacher has a group of courses that they are responsible for.
- Each course consists of a list of students and teachers associated with it.
- Each student can register for an education.
- Each education consists of several courses.### The system should support
1. Registering students
1. Setting up new courses, educations and teachers
1. Suitable crud should be provided for **each** entity.## Technologies Used
- Java 8
- MySQL server
- Java Persistence API (JPA)
- Object Relational Mapping (ORM)
- EclipseLink
- NetBeans IDE
- DAO-pattern (data access object)
- Git