A student management application that will allow the school to track information on students, their information on students and their enrollment in the various courses of study.
Spring, STRUTS 2 with Annotation , Hibernate, JSP, Bootstrap.
Create Table 'school'.'filieres' ('Code_Fil' VARCHAR(20) NOT NULL, 'Nom_Fil' VARCHAR(45) NULL, PRIMARY KEY ('Code_Fil')); Create Table 'school'.'eleves' ( 'cne' VARCHAR(20) NOT NULL, 'nom' VARCHAR(45) NULL,'prenom' VARCHAR(45) NULL,'moyenne' DOUBLE NULL, 'Ref_Fil' VARCHAR(20) NULL,PRIMARY KEY('cne'), INDEX 'Ref_Fil_idx' ('Ref_Fil' ASC), Constraint 'Ref_Fil' Foreign Key ('Ref_Fil') References 'school'.'filieres'('Code_Fil'));