资源简介

一个简单的jsp+servlet实现的增删改查,里面使用的方法十分简单标准,适合广大新手进行学习

资源截图

代码片段和文件信息

package muta.bean;
/**
 * @author help
 *封装一条信息的所有属性这是一个vo类
 */
public class JavaBean {
private int id;
private String name;
private String password;
private String sex;
private int age;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-06-09 17:26  MyServlet\
     文件         588  2013-06-09 17:29  MyServlet\.classpath
     文件        1042  2013-06-09 17:26  MyServlet\.project
     目录           0  2013-06-09 17:26  MyServlet\.settings\
     文件         503  2013-06-09 17:26  MyServlet\.settings\.jsdtscope
     文件         364  2013-06-09 17:26  MyServlet\.settings\org.eclipse.jdt.core.prefs
     文件         481  2013-06-09 17:26  MyServlet\.settings\org.eclipse.wst.common.component
     文件         305  2013-06-09 17:29  MyServlet\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2013-06-09 17:26  MyServlet\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2013-06-09 17:26  MyServlet\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2013-06-09 17:27  MyServlet\WebContent\
     文件        1223  2013-06-09 15:35  MyServlet\WebContent\Insert.jsp
     目录           0  2013-06-09 17:26  MyServlet\WebContent\meta-INF\
     文件          39  2013-06-09 17:26  MyServlet\WebContent\meta-INF\MANIFEST.MF
     文件        1582  2013-06-09 15:52  MyServlet\WebContent\SearchList.jsp
     文件        1494  2013-06-08 23:13  MyServlet\WebContent\Update.jsp
     目录           0  2013-06-09 17:27  MyServlet\WebContent\WEB-INF\
     目录           0  2013-06-09 17:31  MyServlet\WebContent\WEB-INF\lib\
     文件        2677  2013-01-14 09:31  MyServlet\WebContent\WEB-INF\lib\JDiskSerial.jar
     文件       56290  2013-01-14 09:31  MyServlet\WebContent\WEB-INF\lib\activation.jar
     文件     1034049  2013-01-14 09:31  MyServlet\WebContent\WEB-INF\lib\ant-1.6.5.jar
     文件       86038  2010-12-14 17:20  MyServlet\WebContent\WEB-INF\lib\avalon-framework-4.2.0.jar
     文件      274404  2010-12-14 17:20  MyServlet\WebContent\WEB-INF\lib\barcode4j.jar
     文件     2111580  2013-01-14 09:31  MyServlet\WebContent\WEB-INF\lib\batik.jar
     文件       74181  2013-01-14 09:31  MyServlet\WebContent\WEB-INF\lib\bonecp-0.6.7.2.jar
     文件       25637  2013-01-14 09:31  MyServlet\WebContent\WEB-INF\lib\commons-beanutils-bean-collections.jar
     文件      168760  2013-01-14 09:31  MyServlet\WebContent\WEB-INF\lib\commons-beanutils-core.jar
     文件      102753  2013-01-14 09:31  MyServlet\WebContent\WEB-INF\lib\commons-beanutils.jar
     文件       46725  2013-01-14 09:31  MyServlet\WebContent\WEB-INF\lib\commons-codec-1.3.jar
     文件      571259  2013-01-14 09:31  MyServlet\WebContent\WEB-INF\lib\commons-collections-3.2.jar
     文件      121757  2013-05-27 15:19  MyServlet\WebContent\WEB-INF\lib\commons-dbcp-1.2.2.jar
............此处省略79个文件信息

评论

共有 条评论