欢迎来到传世资源网!
加载中...
正在加载,请耐心等待...
本站为收藏、学习站,如有侵权,请联系管理员删除!

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

介绍 评论 失效链接反馈

【例子介绍】零点起飞学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

下载声明:

本站资源均有第三方用户自行上传分享推荐,非本站自制,仅供玩家做交流学习之用!切勿用于商业用途!游戏作品版权归原作者享有,如有版权问题,请附带版权证明至邮件,本平台将应您的要求删除。
相关推荐:

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复