Skip to content

LNMA/course_management_system-model

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

course_management_system-model

model component of course management system.

Component

-This repository represent the model component, you can found controller-view component at repository link below:

https://github.com/LNMA/course_management_system-controller-view

Deploy

  1. Make sure you have JDK 11 && tomcat v9.0.37 && mysql v8.0.21 .
  2. Add project schema to your db; you can found project dumps at dumps file in the repository, and contain two dumps 1.empty schema 2.schema with pre-register admin with password 12345678.

If you want ddl build schema, creat empty schema (In our case schema name: course_management_system) then run com.louay.model.config.MySpringBootJDBCApplication class.

  1. Edit TODO commit, and will be your db username and password.
  2. Add to your Run/Debug configuration com.louay.model.config.MySpringBootJDBCApplication class.
  3. Mapping spring configuration classes.

In intellij you can find it at project structure/facets/spring/add then add it all, also make sure there are no duplicates.

  1. Deploy project using maven before depoly controller-view component.
  2. Next, deploy controller-view component of the project.

About

What is course management system ?

course ms is graduate project from Software engineer training program at: Engineers Training Center / Jordan Engineers Association. I am Louay Amr who is the author, and the designer of project.

What is the idea of the project?

  1. course ms provide several authentications and authorization methods.
  2. sign up pages to student and instructor and verify user id by sending verification email.
  3. login page tracking the user via cookies and session and url.
  4. bootstrap 4 to order the page css.
  5. security filters using spring security, csrf protection, roles for each user using spring security and view layer.
  6. REST API using spring web-mvc and angularjs 1.8.
  7. json binding and converter using jackson.
  8. upload images and pdf files using commons-fileupload library.
  9. an encrypted password using Argon2 Algorithm.
  10. secure channel using JSSE-https-TLSv1.3.
  11. build xls file using org.apache.poi.
  12. jpa-hibernate was used to build modal component of the project.
  13. mysql 8 uses as database.
  14. spring orm side by side with hibernate.
  15. spring Ioc used at level dao and service also controllers.

What are the features the project provides?

  1. login and sign up pages with suitable validation.
  2. home pages for each user according to its permission.
  3. search service, can search for user, course, material, feedback.
  4. edit and view user profile.
  5. search for course only.
  6. review page to account and course.
  7. student join service with suitable validation.
  8. logout service.
  9. course home page.
  10. instructor role can edit its course info.
  11. course search service can search at course material, feedback.
  12. exit from course, and change user status.
  13. user status can see at account review page online/offline, at course/out course.
  14. user notification for new material, feedback.
  15. feedback for each course, can post text/image/text-image post.
  16. comment at feedback service, can user write comment for each post.
  17. edit/delete feedback service.
  18. material service for each course, can users view/add/edit material according to its role.
  19. material can be link, image, pdf files.
  20. ajax often used to submit form, that mean reloads page neglected.
  21. admin only can register instructor users, export attendances student sheet.
  22. after user finish sign up process email will be sent at user email to valid user account.
  23. show user joined courses at home page.
  24. review account show user info plus status plus joined courses list.
  25. review course page show course info plus member list plus join to course service.
  26. add course service provide to instructor role.
  27. security present at all level.