Giter Site home page Giter Site logo

junit-learner-version's Introduction

AD - SBA - Core Java/Hibernate/JUnit - Learner Version

School Management System

Business Requirement:

Your task is to create a basic School Management System where students can register for courses, and view the course assigned to them.

Work-Flow:

Only students with the right credentials can log in. Otherwise, a message is displayed stating: “Wrong Credentials”. Valid students are able to see the courses they are registered for. Valid students are able to register for any course in the system as long as they are not already registered.

Maven Project Requirements:

Demonstration to fork GitHub repository

  • click on Fork fork_image
  • the action will duplicate the repository from the owner account to your own account, giving you the ability to clone the project as the owner from your account. More about forks

Requirement 1 - Models:

Models requires:

  • no args constructor
  • all args constructor
  • required args constructor
  • setters and getter
  • toString (exclude collections to avoid infinite loops)
  • override equals and hashcode methods (don't use lombok here)
  • helper methods
Student (@Table(name = "student")):
Field Datatype Description Database attributes @Column()
email String Student’s unique identifier Primary key, 50 character limit, name email
name String Student’s name 50 character limit, not null, name name
password String Student’s password 50 character limit not null, name password
courses List<Course> Student courses list Join table strategy name student_courses , name of student primary key column student_email and inverse primary key (courses) column courses_id , fetch type eager, cascade all except remove
Course (@Table(name = "course")):
Field Datatype Description Database attributes @Column()
id int Course unique identifier Primary key
name String Course name 50 character limit, not null
instructor String Instructor name 50 character limit not null
students List<Student> Course learners list fetch type eager, cascade all except remove, mappedBy courses

Requirement 2 - Data Access Object (dao) interfaces:

StudentI:
Abstract method Return type Parameters Description
createStudent void Student persist student to database, also handle commit,rollback, and exceptions
getAllStudents List<Student> None return all students from database, also handle commit,rollback, and exceptions
getStudentByEmail Student String email return student if exists, also handle commit,rollback, and exceptions
validateStudent boolean String email, String password match email and password to database to gain access to courses, also handle commit,rollback, and exceptions
registerStudentToCourse void String email, int courseId register a course to a student (collection to prevent duplication), also handle commit,rollback, and exceptions
getStudentCourses List<Course> String email get all the student courses list (use native query), also handle commit,rollback, and exceptions
CourseI:
Abstract method Return type Parameters Description
createCourse void Course persist course to database, also handle commit,rollback, and exceptions
getAllCourses List<Course> None return all courses from database, also handle commit,rollback, and exceptions
getCourseById Course int courseId return course if exists, also handle commit,rollback, and exceptions

Requirement 3 - Service layer:

implement interfaces:

  • StudentService
  • CourseService

Requirement 4 - Utility classes:

  • hibernate configuration session factory helper
  • data initializer helper (dummy data dump)

Requirement 5 - JUnit:

  • Write at least one junit test

Project Tree example

project_tree

Workflow example

workflow example

junit-learner-version's People

Contributors

jhabboubi avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.