├── .classpath ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.jdt.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── README.md ├── src └── main │ ├── java │ ├── handle │ │ └── data │ │ │ ├── HandleBuyGoods.java │ │ │ ├── HandleDelete.java │ │ │ ├── HandleExit.java │ │ │ ├── HandleLogin.java │ │ │ ├── HandleRegister.java │ │ │ ├── HandleUpdate.java │ │ │ ├── PutGoodsToCar.java │ │ │ ├── QueryAllRecord.java │ │ │ └── SearchByCondition.java │ └── save │ │ └── data │ │ ├── Login.java │ │ ├── Record_Bean.java │ │ └── Register.java │ └── webapp │ ├── META-INF │ ├── MANIFEST.MF │ └── context.xml │ ├── WEB-INF │ └── web.xml │ ├── byPageShow.jsp │ ├── css │ ├── 1.jpg │ ├── style1.css │ ├── style2.css │ └── vscode2.css │ ├── image │ ├── 1(1).jpg │ ├── 1(10).jpg │ ├── 1(11).jpg │ ├── 1(12).jpg │ ├── 1(13).jpg │ ├── 1(14).jpg │ ├── 1(2).jpg │ ├── 1(3).jpg │ ├── 1(4).jpg │ ├── 1(5).jpg │ ├── 1(6).jpg │ ├── 1(7).jpg │ ├── 1(8).jpg │ ├── 1(9).jpg │ ├── 11.jpg │ └── 教书.png │ ├── index.jsp │ ├── index2.jsp │ ├── index3-about.jsp │ ├── index4-register.jsp │ ├── index5-login.jsp │ ├── index9-exit.jsp │ ├── lookOrderForm.jsp │ ├── lookShoppingCar.jsp │ ├── searchMobile.jsp │ ├── showDetail.jsp │ └── txt │ ├── index4-register.jsp │ ├── login.jsp │ ├── lookMobile.jsp │ ├── text2.txt │ ├── vscode1.txt │ └── vscode2.txt ├── 数据库文件(mobiledatabase).sql └── 课程设计-项目展示视频.mp4 /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # javaweb-jsp--CourseDesign 2 | javaweb(jsp)-课程设计-图书购物网站 3 | 本项目完成于2021年12月29日,仅供参考。 4 | -------------------------------------------------------------------------------- /src/main/java/handle/data/HandleBuyGoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/handle/data/HandleBuyGoods.java -------------------------------------------------------------------------------- /src/main/java/handle/data/HandleDelete.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/handle/data/HandleDelete.java -------------------------------------------------------------------------------- /src/main/java/handle/data/HandleExit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/handle/data/HandleExit.java -------------------------------------------------------------------------------- /src/main/java/handle/data/HandleLogin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/handle/data/HandleLogin.java -------------------------------------------------------------------------------- /src/main/java/handle/data/HandleRegister.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/handle/data/HandleRegister.java -------------------------------------------------------------------------------- /src/main/java/handle/data/HandleUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/handle/data/HandleUpdate.java -------------------------------------------------------------------------------- /src/main/java/handle/data/PutGoodsToCar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/handle/data/PutGoodsToCar.java -------------------------------------------------------------------------------- /src/main/java/handle/data/QueryAllRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/handle/data/QueryAllRecord.java -------------------------------------------------------------------------------- /src/main/java/handle/data/SearchByCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/handle/data/SearchByCondition.java -------------------------------------------------------------------------------- /src/main/java/save/data/Login.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/save/data/Login.java -------------------------------------------------------------------------------- /src/main/java/save/data/Record_Bean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/save/data/Record_Bean.java -------------------------------------------------------------------------------- /src/main/java/save/data/Register.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/java/save/data/Register.java -------------------------------------------------------------------------------- /src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/byPageShow.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/byPageShow.jsp -------------------------------------------------------------------------------- /src/main/webapp/css/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/css/1.jpg -------------------------------------------------------------------------------- /src/main/webapp/css/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/css/style1.css -------------------------------------------------------------------------------- /src/main/webapp/css/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/css/style2.css -------------------------------------------------------------------------------- /src/main/webapp/css/vscode2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/css/vscode2.css -------------------------------------------------------------------------------- /src/main/webapp/image/1(1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(1).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(10).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(10).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(11).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(11).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(12).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(12).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(13).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(13).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(14).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(14).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(2).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(3).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(4).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(4).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(5).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(5).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(6).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(6).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(7).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(7).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(8).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(8).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/1(9).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/1(9).jpg -------------------------------------------------------------------------------- /src/main/webapp/image/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/11.jpg -------------------------------------------------------------------------------- /src/main/webapp/image/教书.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/image/教书.png -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /src/main/webapp/index2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/index2.jsp -------------------------------------------------------------------------------- /src/main/webapp/index3-about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/index3-about.jsp -------------------------------------------------------------------------------- /src/main/webapp/index4-register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/index4-register.jsp -------------------------------------------------------------------------------- /src/main/webapp/index5-login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/index5-login.jsp -------------------------------------------------------------------------------- /src/main/webapp/index9-exit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/index9-exit.jsp -------------------------------------------------------------------------------- /src/main/webapp/lookOrderForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/lookOrderForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/lookShoppingCar.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/lookShoppingCar.jsp -------------------------------------------------------------------------------- /src/main/webapp/searchMobile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/searchMobile.jsp -------------------------------------------------------------------------------- /src/main/webapp/showDetail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/showDetail.jsp -------------------------------------------------------------------------------- /src/main/webapp/txt/index4-register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/txt/index4-register.jsp -------------------------------------------------------------------------------- /src/main/webapp/txt/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/txt/login.jsp -------------------------------------------------------------------------------- /src/main/webapp/txt/lookMobile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/txt/lookMobile.jsp -------------------------------------------------------------------------------- /src/main/webapp/txt/text2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/txt/text2.txt -------------------------------------------------------------------------------- /src/main/webapp/txt/vscode1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/txt/vscode1.txt -------------------------------------------------------------------------------- /src/main/webapp/txt/vscode2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/src/main/webapp/txt/vscode2.txt -------------------------------------------------------------------------------- /数据库文件(mobiledatabase).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/数据库文件(mobiledatabase).sql -------------------------------------------------------------------------------- /课程设计-项目展示视频.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosoroQ/javaweb-jsp--CourseDesign/HEAD/课程设计-项目展示视频.mp4 --------------------------------------------------------------------------------