文件名称:CDSale
- 所属分类:
- JSP源码/Java
- 资源属性:
- [Java] [源码]
- 上传时间:
- 2013-06-19
- 文件大小:
- 1.48mb
- 下载次数:
- 0次
- 提 供 者:
- 追***
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
1、使用XML文档保存所有商品的信息、订单信息、客户信息、购物车信息;(required)
2、能够在网站页面上分类列出库存数量大于零的商品;(required)
3、能够通过商品列表查询商品的详细信息;(required)
4、能够根据用户名查询与之相关的订单信息;(optional)
5、客户可以在商品列表中选择想要购买的CD,放入购物车中;(optional)
6、管理员可以添加新的音乐专辑(或其它类别的商品)信息。(optional)-1, use the XML document to save all the goods information, order information, customer information, shopping cart information (required)
2, can be listed on the web page classification inventory goods number greater than zero (required)
3, can through the goods list query goods detailed information (required)
4, can according to user s query and the related order information (optional)
5, customers can choose in the commodity list want to buy CD, in the shopping cart (optional)
6, the administrator can add new music album information (or other categories of goods). (optional)
2、能够在网站页面上分类列出库存数量大于零的商品;(required)
3、能够通过商品列表查询商品的详细信息;(required)
4、能够根据用户名查询与之相关的订单信息;(optional)
5、客户可以在商品列表中选择想要购买的CD,放入购物车中;(optional)
6、管理员可以添加新的音乐专辑(或其它类别的商品)信息。(optional)-1, use the XML document to save all the goods information, order information, customer information, shopping cart information (required)
2, can be listed on the web page classification inventory goods number greater than zero (required)
3, can through the goods list query goods detailed information (required)
4, can according to user s query and the related order information (optional)
5, customers can choose in the commodity list want to buy CD, in the shopping cart (optional)
6, the administrator can add new music album information (or other categories of goods). (optional)
(系统自动生成,下载前可以参看下载内容)
下载文件列表
CDSale
......\.classpath
......\.myeclipse
......\.mymetadata
......\.project
......\.settings
......\.........\.jsdtscope
......\.........\com.genuitec.eclipse.j2eedt.core.prefs
......\.........\org.eclipse.core.resources.prefs
......\.........\org.eclipse.jdt.core.prefs
......\.........\org.eclipse.wst.jsdt.ui.superType.container
......\.........\org.eclipse.wst.jsdt.ui.superType.name
......\readme.txt
......\src
......\...\cart.xml
......\...\cds.xml
......\...\cn
......\...\..\cd
......\...\..\..\dao
......\...\..\..\...\CartDao.java
......\...\..\..\...\CDDao.java
......\...\..\..\...\impl
......\...\..\..\...\....\CartDaoImpl.java
......\...\..\..\...\....\CDDaoImpl.java
......\...\..\..\...\....\ManagerDaoImpl.java
......\...\..\..\...\....\OrderDaoImpl.java
......\...\..\..\...\....\UserDaoImpl.java
......\...\..\..\...\ManagerDao.java
......\...\..\..\...\OrderDao.java
......\...\..\..\...\UserDao.java
......\...\..\..\domain
......\...\..\..\......\Cart.java
......\...\..\..\......\CartItem.java
......\...\..\..\......\CD.java
......\...\..\..\......\Manager.java
......\...\..\..\......\Order.java
......\...\..\..\......\User.java
......\...\..\..\exception
......\...\..\..\.........\CDExistException.java
......\...\..\..\.........\PasswordErrorException.java
......\...\..\..\.........\UserExistException.java
......\...\..\..\.........\UserNotExistException.java
......\...\..\..\service
......\...\..\..\.......\CartBusinessService.java
......\...\..\..\.......\CDBusinessService.java
......\...\..\..\.......\impl
......\...\..\..\.......\....\CartBusinessServiceImpl.java
......\...\..\..\.......\....\CDBusinessServiceImpl.java
......\...\..\..\.......\....\ManagerBusinessServiceImpl.java
......\...\..\..\.......\....\OrderBusinessServiceImpl.java
......\...\..\..\.......\....\UserBusinessServiceImpl.java
......\...\..\..\.......\ManagerBusinessService.java
......\...\..\..\.......\OrderBusinessService.java
......\...\..\..\.......\UserBusinessService.java
......\...\..\..\utils
......\...\..\..\.....\CheckCodeServlet.java
......\...\..\..\.....\ServiceUtils.java
......\...\..\..\.....\TokenProcessor.java
......\...\..\..\.....\WebUtils.java
......\...\..\..\.....\XmlUtils.java
......\...\..\..\web
......\...\..\..\...\controller
......\...\..\..\...\..........\AddCDServlet.java
......\...\..\..\...\..........\BuyServlet.java
......\...\..\..\...\..........\CDInfoServlet.java
......\...\..\..\...\..........\ChangeQuantityServlet.java
......\...\..\..\...\..........\ClearCartServlet.java
......\...\..\..\...\..........\DeleteItemServlet.java
......\...\..\..\...\..........\DeleteOrderServlet.java
......\...\..\..\...\..........\LoginServlet.java
......\...\..\..\...\..........\LogoutServlet.java
......\...\..\..\...\..........\Pay2Servlet.java
......\...\..\..\...\..........\PayServlet.java
......\...\..\..\...\..........\RegisterServlet.java
......\...\..\..\...\..........\SaveOrderServlet.java
......\...\..\..\...\formbean
......\...\..\..\...\........\CDForm.java
......\...\..\..\...\........\RegisterForm.java
......\...\..\..\...\UI
......\...\..\..\...\..\AddCDUIServlet.java
......\...\..\..\...\..\CartInfoUIServlet.java
......\...\..\..\...\..\LoginUIServlet.java
......\...\..\..\...\..\OrdersInfoUIServlet.java
......\...\..\..\...\..\PayUIServlet.java
......\...\..\..\...\..\RegisterUIServlet.java
......\...\..\..\...\..\UserInfoUIServlet.java
......\...\junit
......\...\.....\test
......\...\.....\....\CartDaoTest.java
......\...\.....\....\CDDaoTest.java
......\...\.....\....\CDServiceTest.java
......\...\.....\....\ManagerServiceTest.java
......\...\.....\....\ManagerTest.java
......\...\.....\....\OrderDaoTest.java
......\...\.....\....\UserDaoTest.java
......\...\.....\....\UserServiceTest.java
......\...\managers.xml
......\...\orders.xml
......\...\users.xml
......\WebRoot