├── README.md~ ├── .gitignore ├── .settings ├── org.eclipse.wst.jsdt.ui.superType.name ├── org.eclipse.wst.jsdt.ui.superType.container ├── org.eclipse.jdt.core.prefs ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.common.component └── .jsdtscope ├── WebRoot ├── META-INF │ └── MANIFEST.MF ├── zyl.js ├── focus.swf ├── css │ ├── header.css │ ├── login.css │ ├── myaccount.css │ ├── register.css │ ├── footer.css │ ├── about.css │ ├── books.css │ ├── feedback.css │ ├── index.css │ ├── cart.css │ ├── special.css │ ├── details.css │ ├── contact.css │ └── content.css ├── images │ ├── de.gif │ ├── fr.gif │ ├── gb.gif │ ├── about.gif │ ├── banner.gif │ ├── blank.gif │ ├── border.gif │ ├── cart.gif │ ├── close.gif │ ├── color1.gif │ ├── color2.gif │ ├── color3.gif │ ├── flag.gif │ ├── header.jpg │ ├── logo.gif │ ├── next.gif │ ├── prev.gif │ ├── zoom.gif │ ├── big_pic.jpg │ ├── box_top.gif │ ├── bullet1.gif │ ├── bullet2.gif │ ├── bullet3.gif │ ├── bullet4.gif │ ├── bullet5.gif │ ├── bullet6.gif │ ├── chaozhi.png │ ├── csscreme.gif │ ├── loading.gif │ ├── new_icon.gif │ ├── addtocart.png │ ├── banner │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ ├── 04.jpg │ │ ├── 05.jpg │ │ ├── 06.jpg │ │ ├── 07.jpg │ │ ├── 08.jpg │ │ ├── 09.jpg │ │ └── 10.jpg │ ├── bookshelf.jpg │ ├── bookstore.png │ ├── box_bottom.gif │ ├── box_center.gif │ ├── cart_thumb.gif │ ├── center_bg.gif │ ├── closelabel.gif │ ├── contact_bt.gif │ ├── footer_bg.gif │ ├── footer_logo.gif │ ├── nextlabel.gif │ ├── order_now.gif │ ├── prevlabel.gif │ ├── promo_icon.gif │ ├── register_bt.gif │ ├── new_prod_box.gif │ ├── special_icon.gif │ └── left_menu_bullet.gif ├── WEB-INF │ ├── lib │ │ └── mysql-connector-java-5.1.27-bin.jar │ └── web.xml ├── footer.jsp ├── index.jsp ├── feedback.jsp ├── about.jsp ├── head.jsp ├── special.jsp ├── details.jsp ├── protocal.html ├── contact.jsp ├── content-right.jsp ├── content-left.jsp ├── register.jsp ├── cart.jsp ├── books.jsp └── myaccount.jsp ├── README.md ├── src └── net │ └── vicp │ └── zyl_me │ ├── model │ ├── CartHandler.java │ ├── DBConnection.java │ ├── FeedBackBean.java │ ├── GoodsBean.java │ ├── UserBean.java │ ├── FeedBackHandler.java │ ├── UserBeanHandler.java │ └── GoodsBeanHandler.java │ └── control │ ├── CartServlet.java │ ├── ShowGoodsServlet.java │ ├── GetIndexGoodsServlet.java │ ├── ShowDetailServlet.java │ ├── LoginServlet.java │ ├── RegisterServlet.java │ └── FeedBackServlet.java ├── .classpath ├── .project └── bookstore.sql /README.md~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/zyl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/zyl.js -------------------------------------------------------------------------------- /WebRoot/focus.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/focus.swf -------------------------------------------------------------------------------- /WebRoot/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/css/header.css -------------------------------------------------------------------------------- /WebRoot/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/css/login.css -------------------------------------------------------------------------------- /WebRoot/images/de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/de.gif -------------------------------------------------------------------------------- /WebRoot/images/fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/fr.gif -------------------------------------------------------------------------------- /WebRoot/images/gb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/gb.gif -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /WebRoot/css/myaccount.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/css/myaccount.css -------------------------------------------------------------------------------- /WebRoot/css/register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/css/register.css -------------------------------------------------------------------------------- /WebRoot/images/about.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/about.gif -------------------------------------------------------------------------------- /WebRoot/images/banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/banner.gif -------------------------------------------------------------------------------- /WebRoot/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/blank.gif -------------------------------------------------------------------------------- /WebRoot/images/border.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/border.gif -------------------------------------------------------------------------------- /WebRoot/images/cart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/cart.gif -------------------------------------------------------------------------------- /WebRoot/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/close.gif -------------------------------------------------------------------------------- /WebRoot/images/color1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/color1.gif -------------------------------------------------------------------------------- /WebRoot/images/color2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/color2.gif -------------------------------------------------------------------------------- /WebRoot/images/color3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/color3.gif -------------------------------------------------------------------------------- /WebRoot/images/flag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/flag.gif -------------------------------------------------------------------------------- /WebRoot/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/header.jpg -------------------------------------------------------------------------------- /WebRoot/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/logo.gif -------------------------------------------------------------------------------- /WebRoot/images/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/next.gif -------------------------------------------------------------------------------- /WebRoot/images/prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/prev.gif -------------------------------------------------------------------------------- /WebRoot/images/zoom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/zoom.gif -------------------------------------------------------------------------------- /WebRoot/images/big_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/big_pic.jpg -------------------------------------------------------------------------------- /WebRoot/images/box_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/box_top.gif -------------------------------------------------------------------------------- /WebRoot/images/bullet1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/bullet1.gif -------------------------------------------------------------------------------- /WebRoot/images/bullet2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/bullet2.gif -------------------------------------------------------------------------------- /WebRoot/images/bullet3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/bullet3.gif -------------------------------------------------------------------------------- /WebRoot/images/bullet4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/bullet4.gif -------------------------------------------------------------------------------- /WebRoot/images/bullet5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/bullet5.gif -------------------------------------------------------------------------------- /WebRoot/images/bullet6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/bullet6.gif -------------------------------------------------------------------------------- /WebRoot/images/chaozhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/chaozhi.png -------------------------------------------------------------------------------- /WebRoot/images/csscreme.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/csscreme.gif -------------------------------------------------------------------------------- /WebRoot/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/images/new_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/me10zyl/bookstore/HEAD/WebRoot/images/new_icon.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
<%=arr.get(i).getSubject()%>
<%=arr.get(i).getMsg()%>
关于我们
21 |
24 |
29 | 这是一个购物狂书店,其为读者打造的建筑之元素、宗教之情结、人文之关怀的书店阅读空间,吸引了众多国内外读者的聚集,使其成为南京重要的文化地标。
30 | 书店是人民集体意志创造的结晶,它铸造的不仅是先锋风格的人文品牌,更是人民的精神品格和思想品质。
31 |
20 | <%
21 | if (isLogin) {
22 | %>
23 |
特别推荐
26 |
39 |
41 | <%=spearr.get(i).getBreifintroduction()%>
42 |
18 |
留言板
29 | 欢迎给Book 36 | Store留言,如果您有什么意见或建议,我们将根据您的意见认真负责的改进。
37 |
我的购物车
22 |
33 |
39 |
促销:
44 | <%
45 | for (int i = 0; i < proarr.size(); i++) {
46 | %>
47 |
种类:
63 | | C++ | 66 |
| JAVA | 69 |
| JAVASCRIPT | 72 |
| ASP .NET | 75 |
| AJAX | 78 |
新用户:
82 | | <%=userBean.getUsername()%> | 88 |
好书一瞥
17 |
18 | 33 | <%=goodsBean1.getBreifintroduction()%> 34 |
35 |54 | <%=goodsBean2.getBreifintroduction()%> 55 |
56 |
新书推荐
70 |
21 | 注册
22 | 29 | 欢迎加入Book Store商店,在这里你可以买到很多很多好玩又好看的书。不仅能增加你的知识,还能边看边玩。 30 |
31 |
我的购物车
73 | | 图书封面 | 79 |书名 | 80 |单价 | 81 |数量 | 82 |总价 | 83 |
| |
95 | <%=cart.get(i).getGoodsname()%> | 96 |<%=cart.get(i).getGoodsprice()%>¥ | 97 |+ <%=goodsNums.get(i) %> 98 | - | 99 |<%=goodsNums.get(i) * cart.get(i).getGoodsprice()%>¥ | 100 |
| 总数量: 108 | | 109 |<%=cart.size() %> 本 | 110 ||||
| 总共: 113 | | 114 |<%=sum%>¥ | 115 ||||
全部书籍
38 |
我的账户
44 | | 我的账号: | 90 |91 | <%=userBean.getUsername() %> 92 | | 93 |
| 真实姓名: | 96 |<%=userBean.getTruename() %> | 97 |
| 电子邮件: | 100 |<%=userBean.getEmail() %> | 101 |
| 电话号码: | 104 |<%=userBean.getPhone() %> | 105 |
| 用户住址: | 108 |<%=userBean.getAddress_() %> | 109 |
|
112 | 我就是传说中的分割线 113 | 114 | |
115 | |
| 用户级别: | 118 |RANK 1 | 119 |
127 | <%
128 | }
129 | %>
130 |