资源简介

为新学习 JSP 的开发爱好者小白写下这篇文章,教你若何创建一个自己的学生信息管理系统,可能有很多小白也在迷茫中,建议你不要灰心啊,在下面我讲给你叙述如何进行完成一套自己的系统,并且提供两套版本,一套为 IntelliJ IDEA 进行开发的版本,一套为 eclipse 开发的系统版本,接下来我以 Idea 开发为基础,整套开发方式完全基于 MVC 架构思想为新入门的小白们进行一步一步的讲解这一块的知识。以下所有信息都是个人完成,若有转载或者借鉴请注明出处。大家可以参考我的博客进行参考部署开发。原文:https://blog.csdn.net/youxun1312/article/details/89342694

资源截图

代码片段和文件信息

package com.demo.bean;

public class UserBean {
    private Integer id;
    private String username;
    private String password;
    private Integer snum;
    private Boolean sex;
    private String major;
    private Integer age;

    @Override
    public String toString() {
        return “UserBean{“ +
                “id=“ + id +
                “ username=‘“ + username + ‘\‘‘ +
                “ password=‘“ + password + ‘\‘‘ +
                “ snum=“ + snum +
                “ sex=“ + sex +
                “ major=‘“ + major + ‘\‘‘ +
                “ age=“ + age +
                ‘}‘;
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public Integer getSnum() {
        return snum;
    }

    public void setSnum(Integer snum) {
        this.snum = snum;
    }

    public Boolean getSex() {
        return sex;
    }

    public void setSex(Boolean sex) {
        this.sex = sex;
    }

    public String getMajor() {
        return major;
    }

    public void setMajor(String major) {
        this.major = major;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-04-11 21:29  StudentInfo\
     文件        1098  2019-04-11 21:24  StudentInfo\.classpath
     文件         911  2019-04-11 21:24  StudentInfo\.project
     目录           0  2019-04-11 21:29  StudentInfo\.settings\
     文件         567  2019-04-11 21:24  StudentInfo\.settings\.jsdtscope
     文件         364  2019-04-11 21:24  StudentInfo\.settings\org.eclipse.jdt.core.prefs
     文件         475  2019-04-11 21:24  StudentInfo\.settings\org.eclipse.wst.common.component
     文件         345  2019-04-11 21:24  StudentInfo\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2019-04-11 21:24  StudentInfo\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2019-04-11 21:24  StudentInfo\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2019-04-11 21:29  StudentInfo\WebContent\
     目录           0  2019-04-11 21:29  StudentInfo\WebContent\meta-INF\
     文件          39  2019-04-11 21:24  StudentInfo\WebContent\meta-INF\MANIFEST.MF
     目录           0  2019-04-11 21:29  StudentInfo\WebContent\WEB-INF\
     目录           0  2019-04-11 21:29  StudentInfo\WebContent\WEB-INF\lib\
     文件       95505  2019-04-11 21:24  StudentInfo\WebContent\WEB-INF\lib\javax.servlet-api-4.0.1.jar
     文件      414240  2019-04-11 21:24  StudentInfo\WebContent\WEB-INF\lib\jstl-1.2.jar
     文件      983911  2019-04-11 21:24  StudentInfo\WebContent\WEB-INF\lib\mysql-connector-java-5.1.38.jar
     文件         293  2019-04-11 21:24  StudentInfo\WebContent\WEB-INF\web.xml
     文件        2707  2019-04-11 21:24  StudentInfo\WebContent\add.jsp
     目录           0  2019-04-11 21:29  StudentInfo\WebContent\assets\
     目录           0  2019-04-11 21:29  StudentInfo\WebContent\assets\bootstrap-3.3.7\
     目录           0  2019-04-11 21:29  StudentInfo\WebContent\assets\bootstrap-3.3.7\css\
     文件       26132  2019-04-11 21:24  StudentInfo\WebContent\assets\bootstrap-3.3.7\css\bootstrap-theme.css
     文件       47706  2019-04-11 21:24  StudentInfo\WebContent\assets\bootstrap-3.3.7\css\bootstrap-theme.css.map
     文件       23409  2019-04-11 21:24  StudentInfo\WebContent\assets\bootstrap-3.3.7\css\bootstrap-theme.min.css
     文件       25648  2019-04-11 21:24  StudentInfo\WebContent\assets\bootstrap-3.3.7\css\bootstrap-theme.min.css.map
     文件      146010  2019-04-11 21:24  StudentInfo\WebContent\assets\bootstrap-3.3.7\css\bootstrap.css
     文件      389287  2019-04-11 21:24  StudentInfo\WebContent\assets\bootstrap-3.3.7\css\bootstrap.css.map
     文件      121200  2019-04-11 21:24  StudentInfo\WebContent\assets\bootstrap-3.3.7\css\bootstrap.min.css
     文件      542194  2019-04-11 21:24  StudentInfo\WebContent\assets\bootstrap-3.3.7\css\bootstrap.min.css.map
............此处省略43个文件信息

评论

共有 条评论