嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
Servlet实现的简易商城系统(带数据库)
.
├── 小卖部
│ └── oracle
│ ├── WebRoot
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── classes
│ │ │ │ └── oracle
│ │ │ │ ├── Cart.class
│ │ │ │ ├── CartServlet.class
│ │ │ │ ├── ConnDB.class
│ │ │ │ ├── OrderServlet.class
│ │ │ │ ├── Product.class
│ │ │ │ └── ProductServlet.class
│ │ │ ├── lib
│ │ │ │ ├── jsp-api.jar
│ │ │ │ ├── ojdbc6.jar
│ │ │ │ └── servlet-api.jar
│ │ │ └── web.xml
│ │ ├── admin.jsp
│ │ ├── bootstrap
│ │ │ ├── css
│ │ │ │ ├── bootstrap-theme.css
│ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.css.map
│ │ │ │ └── bootstrap.min.css
│ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── jquery.1.11.3.min.js
│ │ │ └── npm.js
│ │ ├── images
│ │ │ ├── 1.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 7.jpg
│ │ │ ├── 8.jpg
│ │ │ └── 9.jpg
│ │ ├── index.jsp
│ │ └── order.jsp
│ └── src
│ └── oracle
│ ├── Cart.java
│ ├── CartServlet.java
│ ├── ConnDB.java
│ ├── OrderServlet.java
│ ├── Product.java
│ └── ProductServlet.java
└── 好例子网_小卖部.rar
15 directories, 45 files