├── .gitignore ├── README.md ├── WebContent ├── CSS │ ├── detailTable.css │ ├── errPageStyle.css │ ├── menuStyle.css │ └── queryTable.css ├── Goods │ ├── goodsAdd.jsp │ ├── goodsAdd_err.jsp │ ├── goodsDetail.jsp │ ├── goodsList.jsp │ ├── goodsModify.jsp │ └── goodsModify_err.jsp ├── META-INF │ └── MANIFEST.MF ├── MainFrame │ ├── homepage.jsp │ ├── menu.jsp │ ├── title.jsp │ └── welcome.jsp ├── Orders │ ├── ordersAdd.jsp │ └── ordersList.jsp ├── Type │ ├── typeAdd.jsp │ ├── typeAdd_err.jsp │ ├── typeDetail.jsp │ ├── typeList.jsp │ ├── typeModify.jsp │ └── typeModify_err.jsp ├── User │ ├── login.jsp │ ├── register.jsp │ └── userList.jsp ├── WEB-INF │ ├── lib │ │ └── mysql-connector-java-5.1.7-bin.jar │ └── web.xml └── img │ ├── 002.jpg │ ├── 20140101195811984_biao.jpg │ ├── 20140101195948906_fugumaoyi.png │ ├── 20140101200534156_xiushengyurongfu.png │ ├── 20140102180149703_xiaoMihei.png │ ├── 20140102180307500_iPhone_5s.jpg │ ├── 20140102180337359_iPhone_5s.jpg │ ├── 20140103120140875_iPhone5s.jpg │ ├── 20140103120224750_iPhone5s.jpg │ ├── 20140103120257828_iPhone5s.jpg │ ├── 20140103150112406_jpg_200x200.jpg │ ├── 20140103154657296_jpg_200x200.jpg │ ├── 410019804-1_l.jpg │ ├── beizi.jpg │ ├── beizi1.jpg │ ├── biao.jpg │ └── daily.jpg ├── screenshot ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png └── 7.png ├── src ├── buss │ ├── GoodsServlet.java │ ├── OrdersServlet.java │ ├── TypeServlet.java │ └── UserServlet.java ├── comm │ ├── Constant.java │ ├── DBHandle.java │ ├── Demo.java │ └── ServletDeal.java ├── dao │ ├── GoodsDao.java │ ├── OrdersDao.java │ ├── TypeDao.java │ └── UserDao.java └── vo │ ├── Goods.java │ ├── Orders.java │ ├── Type.java │ └── User.java └── web └── WEB-INF └── web.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/README.md -------------------------------------------------------------------------------- /WebContent/CSS/detailTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/CSS/detailTable.css -------------------------------------------------------------------------------- /WebContent/CSS/errPageStyle.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | *{ 3 | text-align:center; 4 | } 5 | h1{ 6 | color:red; 7 | margin-top:2em; 8 | } -------------------------------------------------------------------------------- /WebContent/CSS/menuStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/CSS/menuStyle.css -------------------------------------------------------------------------------- /WebContent/CSS/queryTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/CSS/queryTable.css -------------------------------------------------------------------------------- /WebContent/Goods/goodsAdd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Goods/goodsAdd.jsp -------------------------------------------------------------------------------- /WebContent/Goods/goodsAdd_err.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Goods/goodsAdd_err.jsp -------------------------------------------------------------------------------- /WebContent/Goods/goodsDetail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Goods/goodsDetail.jsp -------------------------------------------------------------------------------- /WebContent/Goods/goodsList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Goods/goodsList.jsp -------------------------------------------------------------------------------- /WebContent/Goods/goodsModify.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Goods/goodsModify.jsp -------------------------------------------------------------------------------- /WebContent/Goods/goodsModify_err.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Goods/goodsModify_err.jsp -------------------------------------------------------------------------------- /WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebContent/MainFrame/homepage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/MainFrame/homepage.jsp -------------------------------------------------------------------------------- /WebContent/MainFrame/menu.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/MainFrame/menu.jsp -------------------------------------------------------------------------------- /WebContent/MainFrame/title.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/MainFrame/title.jsp -------------------------------------------------------------------------------- /WebContent/MainFrame/welcome.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/MainFrame/welcome.jsp -------------------------------------------------------------------------------- /WebContent/Orders/ordersAdd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Orders/ordersAdd.jsp -------------------------------------------------------------------------------- /WebContent/Orders/ordersList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Orders/ordersList.jsp -------------------------------------------------------------------------------- /WebContent/Type/typeAdd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Type/typeAdd.jsp -------------------------------------------------------------------------------- /WebContent/Type/typeAdd_err.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Type/typeAdd_err.jsp -------------------------------------------------------------------------------- /WebContent/Type/typeDetail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Type/typeDetail.jsp -------------------------------------------------------------------------------- /WebContent/Type/typeList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Type/typeList.jsp -------------------------------------------------------------------------------- /WebContent/Type/typeModify.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Type/typeModify.jsp -------------------------------------------------------------------------------- /WebContent/Type/typeModify_err.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/Type/typeModify_err.jsp -------------------------------------------------------------------------------- /WebContent/User/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/User/login.jsp -------------------------------------------------------------------------------- /WebContent/User/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/User/register.jsp -------------------------------------------------------------------------------- /WebContent/User/userList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/User/userList.jsp -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /WebContent/img/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/002.jpg -------------------------------------------------------------------------------- /WebContent/img/20140101195811984_biao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/20140101195811984_biao.jpg -------------------------------------------------------------------------------- /WebContent/img/20140101195948906_fugumaoyi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/20140101195948906_fugumaoyi.png -------------------------------------------------------------------------------- /WebContent/img/20140101200534156_xiushengyurongfu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/20140101200534156_xiushengyurongfu.png -------------------------------------------------------------------------------- /WebContent/img/20140102180149703_xiaoMihei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/20140102180149703_xiaoMihei.png -------------------------------------------------------------------------------- /WebContent/img/20140102180307500_iPhone_5s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/20140102180307500_iPhone_5s.jpg -------------------------------------------------------------------------------- /WebContent/img/20140102180337359_iPhone_5s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/20140102180337359_iPhone_5s.jpg -------------------------------------------------------------------------------- /WebContent/img/20140103120140875_iPhone5s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/20140103120140875_iPhone5s.jpg -------------------------------------------------------------------------------- /WebContent/img/20140103120224750_iPhone5s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/20140103120224750_iPhone5s.jpg -------------------------------------------------------------------------------- /WebContent/img/20140103120257828_iPhone5s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/20140103120257828_iPhone5s.jpg -------------------------------------------------------------------------------- /WebContent/img/20140103150112406_jpg_200x200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/20140103150112406_jpg_200x200.jpg -------------------------------------------------------------------------------- /WebContent/img/20140103154657296_jpg_200x200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/20140103154657296_jpg_200x200.jpg -------------------------------------------------------------------------------- /WebContent/img/410019804-1_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/410019804-1_l.jpg -------------------------------------------------------------------------------- /WebContent/img/beizi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/beizi.jpg -------------------------------------------------------------------------------- /WebContent/img/beizi1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/beizi1.jpg -------------------------------------------------------------------------------- /WebContent/img/biao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/biao.jpg -------------------------------------------------------------------------------- /WebContent/img/daily.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/WebContent/img/daily.jpg -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/screenshot/6.png -------------------------------------------------------------------------------- /screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/screenshot/7.png -------------------------------------------------------------------------------- /src/buss/GoodsServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/buss/GoodsServlet.java -------------------------------------------------------------------------------- /src/buss/OrdersServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/buss/OrdersServlet.java -------------------------------------------------------------------------------- /src/buss/TypeServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/buss/TypeServlet.java -------------------------------------------------------------------------------- /src/buss/UserServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/buss/UserServlet.java -------------------------------------------------------------------------------- /src/comm/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/comm/Constant.java -------------------------------------------------------------------------------- /src/comm/DBHandle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/comm/DBHandle.java -------------------------------------------------------------------------------- /src/comm/Demo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/comm/Demo.java -------------------------------------------------------------------------------- /src/comm/ServletDeal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/comm/ServletDeal.java -------------------------------------------------------------------------------- /src/dao/GoodsDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/dao/GoodsDao.java -------------------------------------------------------------------------------- /src/dao/OrdersDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/dao/OrdersDao.java -------------------------------------------------------------------------------- /src/dao/TypeDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/dao/TypeDao.java -------------------------------------------------------------------------------- /src/dao/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/dao/UserDao.java -------------------------------------------------------------------------------- /src/vo/Goods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/vo/Goods.java -------------------------------------------------------------------------------- /src/vo/Orders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/vo/Orders.java -------------------------------------------------------------------------------- /src/vo/Type.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/vo/Type.java -------------------------------------------------------------------------------- /src/vo/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/src/vo/User.java -------------------------------------------------------------------------------- /web/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No37OnlineMallManagementSystem/HEAD/web/WEB-INF/web.xml --------------------------------------------------------------------------------