Giter VIP home page Giter VIP logo

studentmanager's Introduction

StudentManager

学生信息管理系统,是Web课的作业……

功能:

  • 账号注册、登录、注销(密码加密保存)
  • 支持重置密码
  • 学生信息管理(添加、修改、删除)
  • 照片上传、保存、显示

代码我是放出来了,能不能配置出来运行就随缘吧2333
大概只是要修改META-INF/context.xml里的数据库配置

然后数据库里的表要手动建立(执行以下SQL语句即可):

create table students
(
    Name     varchar(64) null,
    Gender   int         null comment '0:未知;1:男;2:女',
    QQ       text        null,
    Phone    text        null,
    Address  text        null,
    Photo    longblob    null,
    ID       varchar(64) not null
        primary key,
    Birthday mediumtext  null
);

create table users
(
    ID      int auto_increment
        primary key,
    User    varchar(50) null,
    Pswd    blob        null,
    PswdKey blob        null,
    constraint users_User_uindex
        unique (User)
);

studentmanager's People

Contributors

tnze avatar

Stargazers

 avatar

Watchers

 avatar  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.