在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例Java语言基础 → 零点起飞学Java Web随书源代码

零点起飞学Java Web随书源代码

Java语言基础

下载此实例
  • 开发语言:Java
  • 实例大小:15.70M
  • 下载次数:11
  • 浏览次数:61
  • 发布时间:2023-04-14
  • 实例类别:Java语言基础
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 相关标签: java web java 源代码 web ja

实例介绍

【实例简介】零点起飞学Java Web随书源代码只供学习使用奥!

【实例截图】

from clipboard

【核心代码】
文件清单
├── 万卷图书论坛.url
├── 清华出版零点起飞学丛书封面
│   ├── 2.jpg
│   ├── 76ff768djw1e6z3p2omhpj207i06c3zn.jpg
│   ├── Visual C 网络编程案例实战400.jpg
│   ├── 技术支持万卷图书论坛二维码.png
│   ├── 零点起飞学Android开发.jpg
│   ├── 零点起飞学C#.jpg
│   ├── 零点起飞学C .jpg
│   ├── 零点起飞学HTML CSS.jpg
│   ├── 零点起飞学iPhone开发.jpg
│   ├── 零点起飞学Java.jpg
│   ├── 零点起飞学Java Web开发.jpg
│   ├── 零点起飞学Linux C编程.jpg
│   ├── 零点起飞学Oracle.jpg
│   ├── 零点起飞学PHP .jpg
│   ├── 零点起飞学SQL Server .jpg
│   ├── 零点起飞学Visual Basic.jpg
│   ├── 零点起飞学Visual C .jpg
│   └── 零点起飞学编程海报.jpg
├── 源文件
│   ├── ch10
│   │   ├── src
│   │   │   └── com
│   │   │       └── examp
│   │   │           └── ch10
│   │   │               ├── AddMessageServlet.java
│   │   │               ├── MessageBean.java
│   │   │               ├── MessageBO.java
│   │   │               └── ViewMessageServlet.java
│   │   └── WebRoot
│   │       ├── addMessage.jsp
│   │       ├── index.html
│   │       ├── index.jsp
│   │       ├── META-INF
│   │       │   └── MANIFEST.MF
│   │       ├── showMessage1.html
│   │       ├── showMessage2.html
│   │       ├── viewMessages1.jsp
│   │       ├── viewMessages2.jsp
│   │       └── WEB-INF
│   │           ├── classes
│   │           │   └── com
│   │           │       └── examp
│   │           │           └── ch10
│   │           │               ├── AddMessageServlet.class
│   │           │               ├── MessageBean.class
│   │           │               ├── MessageBO.class
│   │           │               └── ViewMessageServlet.class
│   │           ├── lib
│   │           │   └── mysql-connector-java-5.1.21-bin.jar
│   │           └── web.xml
│   ├── ch11
│   │   ├── bin
│   │   ├── create_product.sql
│   │   ├── src
│   │   └── WEB-INF
│   │       ├── classes
│   │       ├── lib
│   │       │   ├── mysql-connector-java-5.1.21-bin.jar
│   │       │   └── sqljdbc.jar
│   │       ├── testMSSQL2005.jsp
│   │       ├── testMySQL.jsp
│   │       └── testOracle.jsp
│   ├── ch12
│   │   ├── callServlet.html
│   │   ├── delete.jsp
│   │   ├── index.jsp
│   │   ├── insert.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── pageContent.jsp
│   │   ├── pagePlugin.jsp
│   │   ├── query.jsp
│   │   ├── restoprt.jsp
│   │   ├── update.jsp
│   │   ├── useBean.jsp
│   │   └── WEB-INF
│   │       ├── classes
│   │       │   └── com
│   │       │       └── examp
│   │       │           └── ch12
│   │       │               ├── CustomerBean.class
│   │       │               ├── CustomerServlet.class
│   │       │               ├── DBConnector.class
│   │       │               ├── PageBean.class
│   │       │               ├── PageCustomerServlet.class
│   │       │               └── UseBean.class
│   │       ├── lib
│   │       │   ├── javax.servlet.jsp.jstl.jar
│   │       │   ├── jsf-api.jar
│   │       │   ├── jsf-impl.jar
│   │       │   ├── jstl-impl.jar
│   │       │   └── mysql-connector-java-5.1.21-bin.jar
│   │       └── web.xml
│   ├── ch13
│   │   ├── bin
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       └── ShoppingOnline
│   │   │   │           ├── Category.class
│   │   │   │           ├── Constants.class
│   │   │   │           ├── hibernate
│   │   │   │           │   ├── DbOperate.class
│   │   │   │           │   └── HibernateUtil.class
│   │   │   │           ├── model.hbm.xml
│   │   │   │           ├── Order.class
│   │   │   │           ├── Product.class
│   │   │   │           ├── ShopCart.class
│   │   │   │           ├── test
│   │   │   │           │   ├── TestAddUser.class
│   │   │   │           │   ├── TestGetUser.class
│   │   │   │           │   └── TestUpdateUser.class
│   │   │   │           └── User.class
│   │   │   ├── hibernate
│   │   │   │   └── HibernateSessionFactory.class
│   │   │   └── hibernate.cfg.xml
│   │   ├── commons-logging.jar
│   │   ├── log4j.jar
│   │   └── src
│   │       ├── com
│   │       │   └── examp
│   │       │       └── ShoppingOnline
│   │       │           ├── Category.java
│   │       │           ├── Constants.java
│   │       │           ├── hibernate
│   │       │           │   ├── DbOperate.java
│   │       │           │   └── HibernateUtil.java
│   │       │           ├── model.hbm.xml
│   │       │           ├── Order.java
│   │       │           ├── Product.java
│   │       │           ├── ShopCart.java
│   │       │           ├── test
│   │       │           │   ├── TestAddUser.java
│   │       │           │   ├── TestGetUser.java
│   │       │           │   └── TestUpdateUser.java
│   │       │           └── User.java
│   │       ├── hibernate
│   │       │   └── HibernateSessionFactory.java
│   │       └── hibernate.cfg.xml
│   ├── ch14
│   │   ├── bin
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       └── ShoppingOnline
│   │   │   │           ├── Category.class
│   │   │   │           ├── Constants.class
│   │   │   │           ├── hibernate
│   │   │   │           │   ├── DbOperate.class
│   │   │   │           │   ├── FindUnhandledOrder.class
│   │   │   │           │   └── HibernateUtil.class
│   │   │   │           ├── model.hbm.xml
│   │   │   │           ├── Order.class
│   │   │   │           ├── Product.class
│   │   │   │           ├── ShopCart.class
│   │   │   │           ├── test
│   │   │   │           │   └── TestFindUnhandledOrder.class
│   │   │   │           └── User.class
│   │   │   ├── hibernate
│   │   │   │   └── HibernateSessionFactory.class
│   │   │   └── hibernate.cfg.xml
│   │   └── src
│   │       ├── com
│   │       │   └── examp
│   │       │       └── ShoppingOnline
│   │       │           ├── Category.java
│   │       │           ├── Constants.java
│   │       │           ├── hibernate
│   │       │           │   ├── DbOperate.java
│   │       │           │   ├── FindUnhandledOrder.java
│   │       │           │   └── HibernateUtil.java
│   │       │           ├── model.hbm.xml
│   │       │           ├── Order.java
│   │       │           ├── Product.java
│   │       │           ├── ShopCart.java
│   │       │           ├── test
│   │       │           │   └── TestFindUnhandledOrder.java
│   │       │           └── User.java
│   │       ├── hibernate
│   │       │   └── HibernateSessionFactory.java
│   │       └── hibernate.cfg.xml
│   ├── ch15
│   │   ├── bin
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       └── ShoppingOnline
│   │   │   │           ├── Adminuser.class
│   │   │   │           ├── Category.class
│   │   │   │           ├── Constants.class
│   │   │   │           ├── CreditCardAccount.class
│   │   │   │           ├── hibernate
│   │   │   │           │   ├── DbOperate.class
│   │   │   │           │   ├── HibernateTransaction.class
│   │   │   │           │   └── HibernateUtil.class
│   │   │   │           ├── model.hbm.xml
│   │   │   │           ├── Order.class
│   │   │   │           ├── Person.class
│   │   │   │           ├── Product.class
│   │   │   │           ├── ShopCart.class
│   │   │   │           ├── test
│   │   │   │           │   ├── TestAll.class
│   │   │   │           │   ├── TestMany2ManyBothsides.class
│   │   │   │           │   ├── TestMany2Many.class
│   │   │   │           │   ├── TestOne2ManyBothsides.class
│   │   │   │           │   ├── TestOne2Many.class
│   │   │   │           │   ├── TestOne2One.class
│   │   │   │           │   └── TestSub_Parent.class
│   │   │   │           └── User.class
│   │   │   ├── hibernate
│   │   │   │   └── HibernateSessionFactory.class
│   │   │   ├── hibernate.cfg.xml
│   │   │   └── log4j.properties
│   │   ├── hibernate.log
│   │   └── src
│   │       ├── com
│   │       │   └── examp
│   │       │       └── ShoppingOnline
│   │       │           ├── Adminuser.java
│   │       │           ├── Category.java
│   │       │           ├── Constants.java
│   │       │           ├── CreditCardAccount.java
│   │       │           ├── hibernate
│   │       │           │   ├── DbOperate.java
│   │       │           │   ├── HibernateTransaction.java
│   │       │           │   └── HibernateUtil.java
│   │       │           ├── model.hbm.xml
│   │       │           ├── Order.java
│   │       │           ├── Person.java
│   │       │           ├── Product.java
│   │       │           ├── ShopCart.java
│   │       │           ├── test
│   │       │           │   ├── TestAll.java
│   │       │           │   ├── TestMany2ManyBothsides.java
│   │       │           │   ├── TestMany2Many.java
│   │       │           │   ├── TestOne2ManyBothsides.java
│   │       │           │   ├── TestOne2Many.java
│   │       │           │   ├── TestOne2One.java
│   │       │           │   └── TestSub_Parent.java
│   │       │           └── User.java
│   │       ├── hibernate
│   │       │   └── HibernateSessionFactory.java
│   │       ├── hibernate.cfg.xml
│   │       └── log4j.properties
│   ├── ch16
│   │   ├── bin
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       └── ShoppingOnline
│   │   │   │           ├── Adminuser.class
│   │   │   │           ├── Category.class
│   │   │   │           ├── Constants.class
│   │   │   │           ├── CreditCardAccount.class
│   │   │   │           ├── hibernate
│   │   │   │           │   ├── DbOperate.class
│   │   │   │           │   ├── HibernateTransaction.class
│   │   │   │           │   └── HibernateUtil.class
│   │   │   │           ├── Order.class
│   │   │   │           ├── Person.class
│   │   │   │           ├── Product.class
│   │   │   │           ├── ShopCart.class
│   │   │   │           ├── test
│   │   │   │           │   ├── Log.class
│   │   │   │           │   ├── TestFirstCache.class
│   │   │   │           │   ├── TestLockMode_NONE.class
│   │   │   │           │   ├── TestLockMode_UPGRADE.class
│   │   │   │           │   ├── TestSecondCache2.class
│   │   │   │           │   ├── TestSecondCache.class
│   │   │   │           │   └── TestVersion.class
│   │   │   │           └── User.class
│   │   │   ├── ehcache.xml
│   │   │   ├── hibernate
│   │   │   │   └── HibernateSessionFactory.class
│   │   │   ├── hibernate.cfg.xml
│   │   │   ├── hibernate.properties
│   │   │   ├── log4j.properties
│   │   │   └── model.hbm.xml
│   │   ├── hibernate.log
│   │   └── src
│   │       ├── com
│   │       │   └── examp
│   │       │       └── ShoppingOnline
│   │       │           ├── Adminuser.java
│   │       │           ├── Category.java
│   │       │           ├── Constants.java
│   │       │           ├── CreditCardAccount.java
│   │       │           ├── hibernate
│   │       │           │   ├── DbOperate.java
│   │       │           │   ├── HibernateTransaction.java
│   │       │           │   └── HibernateUtil.java
│   │       │           ├── Order.java
│   │       │           ├── Person.java
│   │       │           ├── Product.java
│   │       │           ├── ShopCart.java
│   │       │           ├── test
│   │       │           │   ├── TestFirstCache.java
│   │       │           │   ├── TestLockMode_NONE.java
│   │       │           │   ├── TestLockMode_UPGRADE.java
│   │       │           │   ├── TestSecondCache2.java
│   │       │           │   ├── TestSecondCache.java
│   │       │           │   └── TestVersion.java
│   │       │           └── User.java
│   │       ├── ehcache.xml
│   │       ├── hibernate
│   │       │   └── HibernateSessionFactory.java
│   │       ├── hibernate.cfg.xml
│   │       ├── hibernate.properties
│   │       ├── log4j.properties
│   │       └── model.hbm.xml
│   ├── ch17
│   │   ├── src
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       └── ch17
│   │   │   │           └── LoginAction.java
│   │   │   └── struts.xml
│   │   ├── struts-config.xml
│   │   └── WebRoot
│   │       ├── index.jsp
│   │       ├── login.jsp
│   │       ├── META-INF
│   │       │   └── MANIFEST.MF
│   │       └── WEB-INF
│   │           ├── classes
│   │           │   ├── com
│   │           │   │   └── examp
│   │           │   │       └── ch17
│   │           │   │           └── LoginAction.class
│   │           │   └── struts.xml
│   │           ├── lib
│   │           └── web.xml
│   ├── ch18
│   │   ├── src
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       └── ch18
│   │   │   │           ├── HelloWorld.java
│   │   │   │           ├── RegAction1.java
│   │   │   │           ├── RegAction2.java
│   │   │   │           └── SavaUserInfo.java
│   │   │   ├── struts.properties
│   │   │   └── struts.xml
│   │   └── WebRoot
│   │       ├── error.jsp
│   │       ├── HelloWorld.jsp
│   │       ├── index.jsp
│   │       ├── META-INF
│   │       │   └── MANIFEST.MF
│   │       ├── register.jsp
│   │       ├── register_tag.jsp
│   │       ├── reg_ok_local.jsp
│   │       ├── success.jsp
│   │       ├── success_tag.jsp
│   │       └── WEB-INF
│   │           ├── classes
│   │           │   ├── com
│   │           │   │   └── examp
│   │           │   │       └── ch18
│   │           │   │           ├── HelloWorld.class
│   │           │   │           ├── RegAction1.class
│   │           │   │           ├── RegAction2.class
│   │           │   │           └── SavaUserInfo.class
│   │           │   ├── struts.properties
│   │           │   └── struts.xml
│   │           ├── lib
│   │           └── web.xml
│   ├── ch2
│   │   ├── firstFile.java
│   │   ├── HelloWorld.class
│   │   ├── HelloWorld.Java
│   │   └── helloworld.jsp
│   ├── ch20
│   │   ├── src
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       └── ch20
│   │   │   │           ├── BookAction2-conversion.properties
│   │   │   │           ├── BookAction2.java
│   │   │   │           ├── BookAction.java
│   │   │   │           ├── Book.java
│   │   │   │           ├── package_en_US.properties
│   │   │   │           ├── package_zh_CN.properties
│   │   │   │           ├── Reg_en_US.properties
│   │   │   │           ├── RegI18nValidate_en_US.properties
│   │   │   │           ├── RegI18nValidate.java
│   │   │   │           ├── RegI18nValidate_zh_CN.properties
│   │   │   │           ├── Reg.java
│   │   │   │           ├── RegValidate.java
│   │   │   │           ├── RegXML.java
│   │   │   │           ├── RegXML-validation.xml
│   │   │   │           ├── Reg_zh_CN.properties
│   │   │   │           ├── temp_en_US.properties
│   │   │   │           ├── temp_zh_CN.properties
│   │   │   │           └── TestAction.java
│   │   │   ├── globalMessages_en_US.properties
│   │   │   ├── globalMessages_zh_CN.properties
│   │   │   ├── struts.properties
│   │   │   └── struts.xml
│   │   └── WebRoot
│   │       ├── addbook.jsp
│   │       ├── addbooks.jsp
│   │       ├── index.jsp
│   │       ├── META-INF
│   │       │   └── MANIFEST.MF
│   │       ├── RegI18nValidate.jsp
│   │       ├── register.jsp
│   │       ├── register_temp.jsp
│   │       ├── regvalidate.jsp
│   │       ├── regXMLvalidate.jsp
│   │       ├── showBook.jsp
│   │       ├── showBooks.jsp
│   │       ├── showTest.jsp
│   │       ├── success.jsp
│   │       ├── test.jsp
│   │       └── WEB-INF
│   │           ├── classes
│   │           │   ├── com
│   │           │   │   └── examp
│   │           │   │       └── ch20
│   │           │   │           ├── BookAction2.class
│   │           │   │           ├── BookAction2-conversion.properties
│   │           │   │           ├── BookAction.class
│   │           │   │           ├── Book.class
│   │           │   │           ├── package_en_US.properties
│   │           │   │           ├── package_zh_CN.properties
│   │           │   │           ├── Reg.class
│   │           │   │           ├── Reg_en_US.properties
│   │           │   │           ├── RegI18nValidate.class
│   │           │   │           ├── RegI18nValidate_en_US.properties
│   │           │   │           ├── RegI18nValidate_zh_CN.properties
│   │           │   │           ├── RegValidate.class
│   │           │   │           ├── RegXML.class
│   │           │   │           ├── RegXML-validation.xml
│   │           │   │           ├── Reg_zh_CN.properties
│   │           │   │           ├── temp_en_US.properties
│   │           │   │           ├── temp_zh_CN.properties
│   │           │   │           └── TestAction.class
│   │           │   ├── globalMessages_en_US.properties
│   │           │   ├── globalMessages_zh_CN.properties
│   │           │   ├── struts.properties
│   │           │   └── struts.xml
│   │           ├── lib
│   │           └── web.xml
│   ├── ch21
│   │   ├── src
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       └── ch21
│   │   │   │           ├── ActionTag.java
│   │   │   │           ├── AppendTag.java
│   │   │   │           ├── checkboxlistTag.java
│   │   │   │           ├── iteratorTag.java
│   │   │   │           ├── MessageAction.java
│   │   │   │           ├── MyFilterDispatcher.java
│   │   │   │           ├── SortTag.java
│   │   │   │           └── User.java
│   │   │   ├── struts.properties
│   │   │   └── struts.xml
│   │   └── WebRoot
│   │       ├── actionTag.jsp
│   │       ├── allTag.jsp
│   │       ├── appendTag.jsp
│   │       ├── beanTag.jsp
│   │       ├── checkboxlist.jsp
│   │       ├── checkboxTag.jsp
│   │       ├── datetimepickerTag.jsp
│   │       ├── ifTag.jsp
│   │       ├── index.jsp
│   │       ├── iteratorTag.jsp
│   │       ├── META-INF
│   │       │   └── MANIFEST.MF
│   │       ├── optgroupTag.jsp
│   │       ├── pushTab.jsp
│   │       ├── setTag.jsp
│   │       ├── showMessage.jsp
│   │       ├── sortTag.jsp
│   │       ├── success.jsp
│   │       ├── treeTag.jsp
│   │       └── WEB-INF
│   │           ├── classes
│   │           │   ├── com
│   │           │   │   └── examp
│   │           │   │       └── ch21
│   │           │   │           ├── ActionTag.class
│   │           │   │           ├── AppendTag.class
│   │           │   │           ├── checkboxlistTag.class
│   │           │   │           ├── iteratorTag.class
│   │           │   │           ├── MessageAction.class
│   │           │   │           ├── MyFilterDispatcher.class
│   │           │   │           ├── SortTag$1.class
│   │           │   │           ├── SortTag.class
│   │           │   │           └── User.class
│   │           │   ├── struts.properties
│   │           │   └── struts.xml
│   │           ├── lib
│   │           └── web.xml
│   ├── ch22
│   │   ├── bin
│   │   │   ├── applicationContext.xml
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       └── ch22
│   │   │   │           ├── interfaces
│   │   │   │           │   └── Hello.class
│   │   │   │           ├── main
│   │   │   │           │   └── TestHelloWorld.class
│   │   │   │           └── services
│   │   │   │               ├── ChHello.class
│   │   │   │               └── EnHello.class
│   │   │   └── log4j.properties
│   │   ├── ch22.log
│   │   ├── config.xml
│   │   ├── spring-form.tld
│   │   ├── spring.tld
│   │   └── src
│   │       ├── applicationContext.xml
│   │       ├── com
│   │       │   └── examp
│   │       │       └── ch22
│   │       │           ├── interfaces
│   │       │           │   └── Hello.java
│   │       │           ├── main
│   │       │           │   └── TestHelloWorld.java
│   │       │           └── services
│   │       │               ├── ChHello.java
│   │       │               └── EnHello.java
│   │       └── log4j.properties
│   ├── ch23
│   │   ├── src
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       └── ch23
│   │   │   │           ├── Check.java
│   │   │   │           ├── HelloWorldAction.java
│   │   │   │           ├── LoginAction.java
│   │   │   │           ├── LoginBean.java
│   │   │   │           ├── LoginController.java
│   │   │   │           ├── SimpleLoginController.java
│   │   │   │           ├── TimeInterceptor.java
│   │   │   │           ├── UserCheck.java
│   │   │   │           └── UserNameValidator.java
│   │   │   ├── log4j.properties
│   │   │   └── views.properties
│   │   └── WebRoot
│   │       ├── index.jsp
│   │       ├── login.jsp
│   │       ├── META-INF
│   │       │   └── MANIFEST.MF
│   │       ├── outsideOfficeHours.html
│   │       ├── sayHello.jsp
│   │       ├── simplelogin.jsp
│   │       ├── simplewelcome.jsp
│   │       ├── WEB-INF
│   │       │   ├── classes
│   │       │   │   ├── com
│   │       │   │   │   └── examp
│   │       │   │   │       └── ch23
│   │       │   │   │           ├── Check.class
│   │       │   │   │           ├── HelloWorldAction.class
│   │       │   │   │           ├── LoginAction.class
│   │       │   │   │           ├── LoginBean.class
│   │       │   │   │           ├── LoginController.class
│   │       │   │   │           ├── SimpleLoginController.class
│   │       │   │   │           ├── TimeInterceptor.class
│   │       │   │   │           ├── UserCheck.class
│   │       │   │   │           └── UserNameValidator.class
│   │       │   │   ├── log4j.properties
│   │       │   │   └── views.properties
│   │       │   ├── dispatcherServlet-servlet.xml
│   │       │   ├── lib
│   │       │   │   └── org.springframework.web.servlet-3.1.2.RELEASE.jar
│   │       │   ├── spring-form.tld
│   │       │   ├── spring.tld
│   │       │   └── web.xml
│   │       └── welcome.jsp
│   ├── ch24
│   │   ├── config2.xml
│   │   ├── config.xml
│   │   ├── src
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       └── ch24
│   │   │   │           ├── AddUserController.java
│   │   │   │           ├── InsertSql2.java
│   │   │   │           ├── InsertSql3.java
│   │   │   │           ├── InsertSql.java
│   │   │   │           ├── TestInsertSql2.java
│   │   │   │           ├── TestInsertSql3.java
│   │   │   │           ├── TestInsertSql.java
│   │   │   │           └── User.java
│   │   │   ├── hibernate
│   │   │   │   └── HibernateSessionFactory.java
│   │   │   ├── hibernate.cfg.xml
│   │   │   └── user.hbm.xml
│   │   └── WebRoot
│   │       ├── addUser.jsp
│   │       ├── index.jsp
│   │       ├── META-INF
│   │       │   └── MANIFEST.MF
│   │       ├── success.jsp
│   │       └── WEB-INF
│   │           ├── applicationcontext-hibernate.xml
│   │           ├── applicationContext.xml
│   │           ├── ch24-servlet.xml
│   │           ├── classes
│   │           │   ├── com
│   │           │   │   └── examp
│   │           │   │       └── ch24
│   │           │   │           ├── AddUserController.class
│   │           │   │           ├── InsertSql$1.class
│   │           │   │           ├── InsertSql2.class
│   │           │   │           ├── InsertSql3.class
│   │           │   │           ├── InsertSql.class
│   │           │   │           ├── TestInsertSql2.class
│   │           │   │           ├── TestInsertSql3.class
│   │           │   │           ├── TestInsertSql.class
│   │           │   │           └── User.class
│   │           │   ├── hibernate
│   │           │   │   └── HibernateSessionFactory.class
│   │           │   ├── hibernate.cfg.xml
│   │           │   └── user.hbm.xml
│   │           ├── jdbc.properties
│   │           ├── lib
│   │           ├── spring-form.tld
│   │           ├── spring.tld
│   │           └── web.xml
│   ├── ch25
│   │   ├── images
│   │   │   ├── 1right.gif
│   │   │   ├── 2right.gif
│   │   │   ├── css.css
│   │   │   ├── dot.gif
│   │   │   ├── fu.gif
│   │   │   ├── gobuy.gif
│   │   │   ├── gwzn1.gif
│   │   │   ├── HPNC4200.jpg
│   │   │   ├── IBMT43BB4.jpg
│   │   │   ├── IBMT43CH8.jpg
│   │   │   ├── IBMT43HH6.jpg
│   │   │   ├── indicator.gif
│   │   │   ├── login.gif
│   │   │   ├── lookbcar.gif
│   │   │   ├── main.gif
│   │   │   ├── main_head_menu001.gif
│   │   │   ├── main_head_menu002.gif
│   │   │   ├── main_head_menu004.gif
│   │   │   ├── main_head_menu005.gif
│   │   │   ├── more.gif
│   │   │   ├── new4.gif
│   │   │   ├── ok.gif
│   │   │   ├── order.gif
│   │   │   ├── promo_list_top.gif
│   │   │   ├── reg2.gif
│   │   │   ├── reg.gif
│   │   │   ├── relbcar.gif
│   │   │   ├── seperator.gif
│   │   │   ├── serarch.gif
│   │   │   ├── SONYA21C.jpg
│   │   │   ├── struts.gif
│   │   │   ├── struts-power.gif
│   │   │   └── ttt.gif
│   │   ├── src
│   │   │   ├── com
│   │   │   │   └── examp
│   │   │   │       ├── ch25
│   │   │   │       │   ├── Check.java
│   │   │   │       │   ├── LoginAction.java
│   │   │   │       │   └── UserCheck.java
│   │   │   │       └── ShoppingOnline
│   │   │   │           ├── Constants.java
│   │   │   │           ├── hibernate
│   │   │   │           │   └── HibernateShopping.java
│   │   │   │           ├── Member.java
│   │   │   │           ├── Order.java
│   │   │   │           ├── Product.java
│   │   │   │           ├── ShopCart.java
│   │   │   │           ├── Shopping.java
│   │   │   │           ├── Sort.java
│   │   │   │           ├── test
│   │   │   │           │   └── TestSave.java
│   │   │   │           └── web
│   │   │   │               ├── BuyAction.java
│   │   │   │               ├── ClearShopCartAction.java
│   │   │   │               ├── CreateOrderAction.java
│   │   │   │               ├── DelOrderAction.java
│   │   │   │               ├── DetailAction.java
│   │   │   │               ├── ExitAction.java
│   │   │   │               ├── FirstAction.java
│   │   │   │               ├── LoginAction.java
│   │   │   │               ├── ModifyUserInfoAction.java
│   │   │   │               ├── OrderListAction.java
│   │   │   │               ├── RegistAction.java
│   │   │   │               ├── SearchAction.java
│   │   │   │               ├── UpdateShopCartAction.java
│   │   │   │               └── validation.xml
│   │   │   ├── hibernate
│   │   │   │   └── HibernateSessionFactory.java
│   │   │   ├── hibernate.cfg.xml
│   │   │   ├── model.hbm.xml
│   │   │   ├── struts.properties
│   │   │   └── struts.xml
│   │   └── WebRoot
│   │       ├── basket.jsp
│   │       ├── basketOk.jsp
│   │       ├── bottom.jsp
│   │       ├── cash.jsp
│   │       ├── cashOk.jsp
│   │       ├── default.jsp
│   │       ├── detail.jsp
│   │       ├── error.jsp
│   │       ├── index.jsp
│   │       ├── left.jsp
│   │       ├── listMain.jsp
│   │       ├── login.jsp
│   │       ├── loginOkLeft.jsp
│   │       ├── main.jsp
│   │       ├── META-INF
│   │       │   └── MANIFEST.MF
│   │       ├── modifyUser.jsp
│   │       ├── orderDisplay.jsp
│   │       ├── orderOk.jsp
│   │       ├── payMethod.jsp
│   │       ├── registMain4.jsp
│   │       ├── registMain.jsp
│   │       ├── right.jsp
│   │       ├── success.jsp
│   │       ├── top.jsp
│   │       ├── WEB-INF
│   │       │   ├── applicationContext.xml
│   │       │   ├── classes
│   │       │   │   ├── com
│   │       │   │   │   └── examp
│   │       │   │   │       ├── ch25
│   │       │   │   │       │   ├── Check.class
│   │       │   │   │       │   ├── LoginAction.class
│   │       │   │   │       │   └── UserCheck.class
│   │       │   │   │       └── ShoppingOnline
│   │       │   │   │           ├── Constants.class
│   │       │   │   │           ├── hibernate
│   │       │   │   │           │   └── HibernateShopping.class
│   │       │   │   │           ├── Member.class
│   │       │   │   │           ├── Order.class
│   │       │   │   │           ├── Product.class
│   │       │   │   │           ├── ShopCart.class
│   │       │   │   │           ├── Shopping.class
│   │       │   │   │           ├── Sort.class
│   │       │   │   │           ├── test
│   │       │   │   │           │   └── TestSave.class
│   │       │   │   │           └── web
│   │       │   │   │               ├── BuyAction.class
│   │       │   │   │               ├── ClearShopCartAction.class
│   │       │   │   │               ├── CreateOrderAction.class
│   │       │   │   │               ├── DelOrderAction.class
│   │       │   │   │               ├── DetailAction.class
│   │       │   │   │               ├── ExitAction.class
│   │       │   │   │               ├── FirstAction.class
│   │       │   │   │               ├── LoginAction.class
│   │       │   │   │               ├── ModifyUserInfoAction.class
│   │       │   │   │               ├── OrderListAction.class
│   │       │   │   │               ├── RegistAction.class
│   │       │   │   │               ├── SearchAction.class
│   │       │   │   │               ├── UpdateShopCartAction.class
│   │       │   │   │               └── validation.xml
│   │       │   │   ├── hibernate
│   │       │   │   │   └── HibernateSessionFactory.class
│   │       │   │   ├── hibernate.cfg.xml
│   │       │   │   ├── model.hbm.xml
│   │       │   │   ├── struts.properties
│   │       │   │   └── struts.xml
│   │       │   ├── jdbc.properties
│   │       │   ├── lib
│   │       │   ├── spring-form.tld
│   │       │   ├── spring.tld
│   │       │   ├── struts-tags.tld
│   │       │   └── web.xml
│   │       └── wrong.jsp
│   ├── ch4
│   │   ├── demo.jsp
│   │   ├── helloWorld.jsp
│   │   ├── number.html
│   │   └── testNumber.jsp
│   ├── ch5
│   │   ├── c.jsp
│   │   ├── classic.jsp
│   │   ├── page.jsp
│   │   ├── scriptlet.jsp
│   │   ├── translate.jsp
│   │   ├── 示例5-12
│   │   │   ├── register.html
│   │   │   ├── src
│   │   │   │   └── com
│   │   │   │       └── examp
│   │   │   │           └── ch5
│   │   │   │               └── UserBean.java
│   │   │   └── WebRoot
│   │   │       ├── index.jsp
│   │   │       ├── META-INF
│   │   │       │   └── MANIFEST.MF
│   │   │       ├── register.jsp
│   │   │       └── WEB-INF
│   │   │           ├── classes
│   │   │           │   └── com
│   │   │           │       └── examp
│   │   │           │           └── ch5
│   │   │           │               └── UserBean.class
│   │   │           ├── lib
│   │   │           └── web.xml
│   │   ├── 示例5-13
│   │   │   ├── register2.html
│   │   │   ├── src
│   │   │   │   └── com
│   │   │   │       └── examp
│   │   │   │           └── ch5
│   │   │   │               └── User.java
│   │   │   └── WebRoot
│   │   │       ├── full.jsp
│   │   │       ├── index.jsp
│   │   │       ├── META-INF
│   │   │       │   └── MANIFEST.MF
│   │   │       └── WEB-INF
│   │   │           ├── classes
│   │   │           │   └── com
│   │   │           │       └── examp
│   │   │           │           └── ch5
│   │   │           │               └── User.class
│   │   │           ├── lib
│   │   │           └── web.xml
│   │   ├── 示例5-6
│   │   │   ├── body.html
│   │   │   ├── foot.jsp
│   │   │   ├── head.jsp
│   │   │   └── include.jsp
│   │   ├── 示例5-8
│   │   │   ├── jsp_include.jsp
│   │   │   └── response.jsp
│   │   └── 示例5-9
│   │       ├── checklogin.jsp
│   │       └── success.jsp
│   ├── ch6
│   │   ├── index.jsp
│   │   ├── out.jsp
│   │   ├── request.jsp
│   │   ├── response.jsp
│   │   ├── 示例6-4
│   │   │   ├── check_login.jsp
│   │   │   ├── login.html
│   │   │   └── loginsucess.jsp
│   │   ├── 示例6-5
│   │   │   ├── form.html
│   │   │   ├── getAttribute.jsp
│   │   │   └── setAttribute.jsp
│   │   ├── 示例6-6
│   │   │   ├── count.jsp
│   │   │   └── test_application.jsp
│   │   ├── 示例6-7
│   │   │   ├── error.jsp
│   │   │   └── mustBeError.jsp
│   │   ├── 示例6-8
│   │   │   ├── checkLogin.jsp
│   │   │   └── welcome.jsp
│   │   └── 示例6-9
│   │       └── chat.jsp
│   ├── ch7
│   │   ├── calculate.jsp
│   │   ├── index.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── register.jsp
│   │   ├── userRegist.jsp
│   │   └── WEB-INF
│   │       ├── classes
│   │       │   └── com
│   │       │       └── examp
│   │       │           └── ch7
│   │       │               ├── AddUser.class
│   │       │               ├── Calculator.class
│   │       │               ├── CategoryBean.class
│   │       │               ├── ProductBean.class
│   │       │               └── UserInfo.class
│   │       ├── lib
│   │       │   ├── javax.servlet.jsp.jstl.jar
│   │       │   ├── jsf-api.jar
│   │       │   ├── jsf-impl.jar
│   │       │   ├── jstl-impl.jar
│   │       │   └── mysql-connector-java-5.1.21-bin.jar
│   │       └── web.xml
│   ├── ch8
│   │   ├── index.html
│   │   ├── index.jsp
│   │   ├── jspTest.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   └── WEB-INF
│   │       ├── classes
│   │       │   └── com
│   │       │       └── examp
│   │       │           └── ch8
│   │       │               └── HelloWorldServlet.class
│   │       ├── lib
│   │       │   ├── javax.servlet.jsp.jstl.jar
│   │       │   ├── jsf-api.jar
│   │       │   ├── jsf-impl.jar
│   │       │   └── jstl-impl.jar
│   │       └── web.xml
│   └── ch9
│       ├── a.jsp
│       ├── context_test.jsp
│       ├── dogetForm.html
│       ├── dopostForm.html
│       ├── index.jsp
│       ├── login.jsp
│       ├── META-INF
│       │   └── MANIFEST.MF
│       ├── session_test.jsp
│       └── WEB-INF
│           ├── classes
│           │   └── com
│           │       └── examp
│           │           └── ch9
│           │               ├── AuthFilter.class
│           │               ├── DoGetTestServlet.class
│           │               ├── DoPostTestServlet.class
│           │               ├── EncodingFilter.class
│           │               ├── JDBCServlet.class
│           │               ├── MyRequestListener.class
│           │               ├── MyServletContextListener.class
│           │               └── MySessionListener.class
│           ├── lib
│           │   ├── javax.servlet.jsp.jstl.jar
│           │   ├── jsf-api.jar
│           │   ├── jsf-impl.jar
│           │   └── jstl-impl.jar
│           └── web.xml
└── ★★★读者必读★★★.txt

271 directories, 662 files

实例下载地址

零点起飞学Java Web随书源代码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警