Student management system based on STRUTS2 framework Development

Source: Internet
Author: User

Student management system using STRUTS2 framework as a background development framework, JSP implementation of page data display, the database using MySQL.
Feature Description:
Including student information management, class information management, grade information management, System Information management and other functions.
The database model is set up as follows:
CREATE TABLE T_class (
ClassId Int (one) not NULL auto_increment,
ClassName varchar (default) NULL,
Gradeid Int (one) default NULL,
Classdesc text,
PRIMARY KEY (classId)
) Engine=innodb DEFAULT Charset=utf8;
CREATE TABLE T_datadic (
Ddid Int (one) not NULL auto_increment,
Ddtypeid Int (one) default NULL,
Ddvalue varchar (default) NULL,
Dddesc text,
PRIMARY KEY (Ddid)
) Engine=innodb DEFAULT Charset=utf8;
CREATE TABLE T_datadictype (
Ddtypeid Int (one) not NULL auto_increment,
Ddtypename varchar (default) NULL,
Ddtypedesc text,
PRIMARY KEY (Ddtypeid)
) Engine=innodb DEFAULT Charset=utf8;
CREATE TABLE T_grade (
Gradeid Int (one) not NULL auto_increment,
Gradename varchar (default) NULL,
Gradedesc text,
PRIMARY KEY (Gradeid)
) Engine=innodb DEFAULT Charset=utf8;
CREATE TABLE T_student (
StudentID varchar (+) not NULL,
Stuno varchar (default) NULL,
Stuname varchar (default) NULL,
Stusex varchar () default NULL,
Stubirthday Date Default NULL,
STURXSJ Date Default NULL,
Stunation varchar (default) NULL,
STUZZMM varchar (default) NULL,
ClassId Int (one) default NULL,
Studesc text,
Stupic varchar (default) NULL,
PRIMARY KEY (StudentID)
) Engine=innodb DEFAULT Charset=utf8;
CREATE TABLE T_user (
UserId Int (one) is not NULL auto_increment,
UserName varchar (default) NULL,
Password varchar (default) NULL,
PRIMARY KEY (userId)
) Engine=innodb DEFAULT Charset=utf8;

The functions are as follows:

Student management system based on STRUTS2 framework Development

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.