资源简介

本程序采用jsp+javabean+servlet结构开发,包含登录、商品管理两大模块;用到的技术包括:jsp、servlet、javabea、过滤器、EL表达式、JSTL标签库、jdbc技术。

资源截图

代码片段和文件信息

package com.dwx.bean;
/**
 * 商品实体类
 * @author 云淡风轻
 *
 */
public class items {
public static final int PAGE_SIZE = 5;
private int id;
private String name;
private String city;
private float price;
private int number;
private String picture;
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 getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
public int getNumber() {
return number;
}
public void setNumber(int number) {
this.number = number;
}
public String getPicture() {
return picture;
}
public void setPicture(String picture) {
this.picture = picture;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-04-27 17:06  john\
     文件        1224  2018-04-23 14:33  john\.classpath
     文件        1054  2018-04-20 15:39  john\.project
     目录           0  2018-04-20 15:39  john\.settings\
     文件         564  2018-04-20 15:39  john\.settings\.jsdtscope
     文件         364  2018-04-20 15:39  john\.settings\org.eclipse.jdt.core.prefs
     文件         471  2018-04-20 15:39  john\.settings\org.eclipse.wst.common.component
     文件         414  2018-04-20 15:39  john\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2018-04-20 15:39  john\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2018-04-20 15:39  john\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2018-04-27 16:59  john\DB\
     文件        1588  2018-04-27 16:58  john\DB\items.sql
     文件         819  2018-04-27 16:58  john\DB\user.sql
     文件         982  2018-04-27 17:04  john\Readme.txt
     目录           0  2018-04-23 14:42  john\src\
     目录           0  2018-04-23 14:42  john\src\com\
     目录           0  2018-04-25 15:59  john\src\com\dwx\
     目录           0  2018-04-25 15:57  john\src\com\dwx\bean\
     文件         944  2018-04-26 09:47  john\src\com\dwx\bean\items.java
     文件        2195  2018-04-27 16:47  john\src\com\dwx\bean\itemsDao.java
     文件         447  2018-04-26 08:56  john\src\com\dwx\bean\user.java
     文件         609  2018-04-25 16:12  john\src\com\dwx\bean\userDao.java
     目录           0  2018-04-26 10:24  john\src\com\dwx\filter\
     文件        1258  2018-04-24 16:28  john\src\com\dwx\filter\CharactorFilter.java
     文件        2661  2018-04-26 15:03  john\src\com\dwx\filter\loginFilter.java
     目录           0  2018-04-27 16:47  john\src\com\dwx\servlet\
     文件        2244  2018-04-27 09:59  john\src\com\dwx\servlet\addItemsServlet.java
     文件        1625  2018-04-27 16:12  john\src\com\dwx\servlet\deleteItemsServlet.java
     文件        2065  2018-04-27 15:38  john\src\com\dwx\servlet\FindServlet.java
     文件        2484  2018-04-26 15:27  john\src\com\dwx\servlet\loginServlet.java
     文件        1786  2018-04-27 16:46  john\src\com\dwx\servlet\updateItemsServlet.java
............此处省略50个文件信息

评论

共有 条评论