实例介绍
Java Web从入门到精通 例子 源码 明日科技
【实例截图】
【核心代码】
JavaWeb从入门到精通(明日科技)
└── sl(实例源程序)
├── 10
│ ├── 1
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 10
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── bean
│ │ │ │ ├── Student.class
│ │ │ │ └── StudentDao.class
│ │ │ └── servlet
│ │ │ └── FindStudent.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── bean
│ │ │ │ ├── StudentDao.java
│ │ │ │ └── Student.java
│ │ │ └── servlet
│ │ │ └── FindStudent.java
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── student_list.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 11
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── bean
│ │ │ │ ├── Student.class
│ │ │ │ └── StudentDao.class
│ │ │ └── servlet
│ │ │ ├── DeleteStudent.class
│ │ │ └── FindStudent.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── bean
│ │ │ │ ├── StudentDao.java
│ │ │ │ └── Student.java
│ │ │ └── servlet
│ │ │ ├── DeleteStudent.java
│ │ │ └── FindStudent.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── student_list.jsp
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Book.class
│ │ │ └── CharFilter.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Book.java
│ │ │ └── CharFilter.java
│ │ ├── WebContent
│ │ │ ├── AddBook.jsp
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Book.class
│ │ │ ├── CharFilter.class
│ │ │ └── FindServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Book.java
│ │ │ ├── CharFilter.java
│ │ │ └── FindServlet.java
│ │ ├── WebContent
│ │ │ ├── book_list.jsp
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Book.class
│ │ │ ├── FindServlet.class
│ │ │ └── UpdateServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Book.java
│ │ │ ├── FindServlet.java
│ │ │ └── UpdateServlet.java
│ │ ├── WebContent
│ │ │ ├── book_list.jsp
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 5
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Book.class
│ │ │ ├── DeleteServlet.class
│ │ │ └── FindServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Book.java
│ │ │ ├── DeleteServlet.java
│ │ │ └── FindServlet.java
│ │ ├── WebContent
│ │ │ ├── book_list.jsp
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 6
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── Batch.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── Batch.java
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 7
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Book.class
│ │ │ ├── Char.class
│ │ │ └── FindBook.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Book.java
│ │ │ ├── Char.java
│ │ │ └── FindBook.java
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 8
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── bean
│ │ │ │ ├── BookDao.class
│ │ │ │ └── Product.class
│ │ │ └── servlet
│ │ │ └── FindServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── bean
│ │ │ │ ├── BookDao.java
│ │ │ │ └── Product.java
│ │ │ └── servlet
│ │ │ └── FindServlet.java
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── product_list.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 9
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── bean
│ │ │ │ ├── Student.class
│ │ │ │ └── StudentDao.class
│ │ │ └── servlet
│ │ │ └── AddStudent.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── bean
│ │ │ │ ├── StudentDao.java
│ │ │ │ └── Student.java
│ │ │ └── servlet
│ │ │ └── AddStudent.java
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ └── Database10
│ └── db_database10.sql
├── 11
│ ├── 1
│ │ └── WebContent
│ │ ├── index.jsp
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ ├── 2
│ │ └── WebContent
│ │ ├── index.jsp
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ ├── 3
│ │ └── WebContent
│ │ ├── index.jsp
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── UserInfo.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── UserInfo.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ ├── 5
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 6
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── StringDeal.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── StringDeal.java
│ │ └── WebContent
│ │ ├── deal.jsp
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ ├── stringDeal.tld
│ │ └── web.xml
│ ├── 7
│ │ └── WebContent
│ │ ├── deal.jsp
│ │ ├── images
│ │ │ ├── bg.gif
│ │ │ ├── bt_1.gif
│ │ │ ├── bt_2.gif
│ │ │ └── Thumbs.db
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 8
│ │ └── WebContent
│ │ ├── deal.jsp
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ └── 9
│ └── WebContent
│ ├── deal.jsp
│ ├── images
│ │ ├── bg.gif
│ │ ├── bt_1.gif
│ │ ├── bt_2.gif
│ │ └── Thumbs.db
│ ├── index.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ └── WEB-INF
│ ├── codeShift.tld
│ └── web.xml
├── 12
│ ├── 1
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 10
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 11
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 12
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 13
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 14
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 15
│ │ ├── WebContent
│ │ │ ├── agreement.txt
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 16
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 17
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── UserInfo.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── UserInfo.java
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 3
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── UserInfo.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── UserInfo.java
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 5
│ │ ├── WebContent
│ │ │ ├── images
│ │ │ │ ├── bg.jpg
│ │ │ │ └── Thumbs.db
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── navigation.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 6
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 7
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── main.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 8
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ └── 9
│ ├── WebContent
│ │ ├── index.jsp
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ └── 使用说明.txt
├── 13
│ ├── 1
│ │ └── WebContent
│ │ ├── checkUser.jsp
│ │ ├── images
│ │ │ ├── bg.gif
│ │ │ ├── checkBt.jpg
│ │ │ ├── registerBt.jpg
│ │ │ ├── Thumbs.db
│ │ │ └── tooltip.jpg
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── core
│ │ │ ├── ConnDB.class
│ │ │ └── connDB.properties
│ │ ├── src
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── core
│ │ │ ├── ConnDB.java
│ │ │ └── connDB.properties
│ │ └── WebContent
│ │ ├── getInfo.jsp
│ │ ├── index.jsp
│ │ ├── JS
│ │ │ └── AjaxRequest.js
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── tools
│ │ │ ├── CityMap.class
│ │ │ └── ZoneServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── tools
│ │ │ ├── CityMap.java
│ │ │ └── ZoneServlet.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── JS
│ │ │ └── AjaxRequest.js
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── servlet
│ │ │ └── UpLoad.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── servlet
│ │ │ └── UpLoad.java
│ │ ├── WebContent
│ │ │ ├── CSS
│ │ │ │ └── style.css
│ │ │ ├── error.jsp
│ │ │ ├── images
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── chongzhi.gif
│ │ │ │ ├── progressBar.jpg
│ │ │ │ ├── shangchuan.gif
│ │ │ │ └── Thumbs.db
│ │ │ ├── index.jsp
│ │ │ ├── JS
│ │ │ │ └── AjaxRequest.js
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── showProgress.jsp
│ │ │ ├── upFile_deal.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 5
│ │ └── WebContent
│ │ ├── deal.jsp
│ │ ├── images
│ │ │ ├── bg.jpg
│ │ │ └── Thumbs.db
│ │ ├── index.jsp
│ │ ├── JS
│ │ │ └── AjaxRequest.js
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 6
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── core
│ │ │ ├── ConnDB.class
│ │ │ └── connDB.properties
│ │ ├── src
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── core
│ │ │ ├── ConnDB.java
│ │ │ └── connDB.properties
│ │ ├── WebContent
│ │ │ ├── getNews.jsp
│ │ │ ├── index.jsp
│ │ │ ├── JS
│ │ │ │ └── AjaxRequest.js
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 7
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── core
│ │ │ ├── ConnDB.class
│ │ │ └── connDB.properties
│ │ ├── src
│ │ │ └── com
│ │ │ └── wgh
│ │ │ └── core
│ │ │ ├── ConnDB.java
│ │ │ └── connDB.properties
│ │ ├── WebContent
│ │ │ ├── getTip.jsp
│ │ │ ├── images
│ │ │ │ ├── book
│ │ │ │ │ ├── javaslwqzxsc.jpg
│ │ │ │ │ ├── javawebcxkfflbd.jpg
│ │ │ │ │ ├── javawebdxmkdq.jpg
│ │ │ │ │ ├── jspxmkfqcsl.jpg
│ │ │ │ │ └── Thumbs.db
│ │ │ │ ├── Thumbs.db
│ │ │ │ └── tip.gif
│ │ │ ├── index.jsp
│ │ │ ├── JS
│ │ │ │ └── AjaxRequest.js
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ └── database
│ └── db_database13.sql
├── 14
│ ├── 1
│ │ ├── build
│ │ │ └── classes
│ │ │ └── struts.xml
│ │ ├── src
│ │ │ └── struts.xml
│ │ ├── WebContent
│ │ │ ├── first.jsp
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ └── UserAction.class
│ │ │ └── struts.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ └── UserAction.java
│ │ │ └── struts.xml
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── user_add.jsp
│ │ │ ├── user_update.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ └── GreetingAction.class
│ │ │ └── struts.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ └── GreetingAction.java
│ │ │ └── struts.xml
│ │ ├── WebContent
│ │ │ ├── error.jsp
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── success.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ └── TestAction.class
│ │ │ └── struts.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ └── TestAction.java
│ │ │ └── struts.xml
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── success.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 5
│ │ ├── build
│ │ │ └── classes
│ │ │ └── cn
│ │ │ └── mrcast
│ │ │ └── action
│ │ │ └── LoginAction.class
│ │ ├── src
│ │ │ └── cn
│ │ │ └── mrcast
│ │ │ └── action
│ │ │ └── LoginAction.java
│ │ ├── WebContent
│ │ │ ├── error.jsp
│ │ │ ├── images
│ │ │ │ ├── {52C39AB4-12B66A-41FB-9784-DA90ADEF9CD5}_03.gif
│ │ │ │ ├── {52C39AB4-B66A-41FB-9784-DA90ADEF9CD5}_01.gif
│ │ │ │ ├── {52C39AB4-B66A-41FB-9784-DA90ADEF9CD5}_02.gif
│ │ │ │ ├── {52C39AB4-B66A-41FB-9784-DA90ADEF9CD5}_03.gif
│ │ │ │ ├── {52C39AB4-B66A-41FB-9784-DA90ADEF9CD5}_04.gif
│ │ │ │ └── {52C39AB4-B66A-41FB-9784-DA90ADEF9CD5}_05.gif
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── success.jsp
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ └── cn
│ │ │ │ └── mrcast
│ │ │ │ └── action
│ │ │ │ └── LoginAction.class
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 6
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── lee
│ │ │ │ ├── LoginAction.class
│ │ │ │ ├── User.class
│ │ │ │ └── UserConverter.class
│ │ │ ├── struts.xml
│ │ │ └── xwork-conversion.properties
│ │ ├── src
│ │ │ ├── lee
│ │ │ │ ├── LoginAction.java
│ │ │ │ ├── UserConverter.java
│ │ │ │ └── User.java
│ │ │ ├── struts.xml
│ │ │ └── xwork-conversion.properties
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── WEB-INF
│ │ │ │ ├── classes
│ │ │ │ │ ├── lee
│ │ │ │ │ │ ├── LoginAction.class
│ │ │ │ │ │ ├── User.class
│ │ │ │ │ │ └── UserConverter.class
│ │ │ │ │ ├── struts.xml
│ │ │ │ │ └── xwork-conversion.properties
│ │ │ │ └── web.xml
│ │ │ └── welcome.jsp
│ │ └── 使用说明.txt
│ └── 7
│ ├── build
│ │ └── classes
│ │ ├── struts.xml
│ │ └── tom
│ │ └── jiafei
│ │ ├── ZhuceAction.class
│ │ └── ZhuceAction-validation.xml
│ ├── src
│ │ ├── struts.xml
│ │ └── tom
│ │ └── jiafei
│ │ ├── ZhuceAction.java
│ │ └── ZhuceAction-validation.xml
│ ├── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ ├── classes
│ │ │ ├── struts.xml
│ │ │ └── tom
│ │ │ └── jiafei
│ │ │ ├── ZhuceAction.class
│ │ │ └── ZhuceAction-validation.xml
│ │ └── web.xml
│ └── 使用说明.txt
├── 15
│ ├── 1
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ ├── action
│ │ │ │ │ └── OGNLAction.class
│ │ │ │ └── bean
│ │ │ │ └── Student.class
│ │ │ └── struts.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ ├── action
│ │ │ │ │ └── OGNLAction.java
│ │ │ │ └── bean
│ │ │ │ └── Student.java
│ │ │ └── struts.xml
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── success.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ └── TestAction.class
│ │ │ └── struts.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ └── TestAction.java
│ │ │ └── struts.xml
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── success.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ └── UserAction.class
│ │ │ └── struts.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ └── UserAction.java
│ │ │ └── struts.xml
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── struts.xml
│ │ │ ├── success.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ ├── UserAction.class
│ │ │ │ └── UserAction-validation.xml
│ │ │ └── struts.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ └── action
│ │ │ │ ├── UserAction.java
│ │ │ │ └── UserAction-validation.xml
│ │ │ └── struts.xml
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── login.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── success.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 5
│ │ ├── build
│ │ │ └── classes
│ │ │ └── struts.xml
│ │ ├── src
│ │ │ └── struts.xml
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ └── struts.xml
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 6
│ │ ├── build
│ │ │ └── classes
│ │ │ └── struts.xml
│ │ ├── src
│ │ │ └── struts.xml
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ └── struts.xml
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ └── 7
│ ├── build
│ │ └── classes
│ │ ├── ApplicationResources.properties
│ │ ├── fe
│ │ │ └── zx
│ │ │ └── ItxAction.class
│ │ ├── lee
│ │ │ └── LoginAction.class
│ │ ├── messageResource_en_US.properties
│ │ ├── messageResource.properties
│ │ ├── messageResource_zh_CN.properties
│ │ └── struts.xml
│ ├── src
│ │ ├── ApplicationResources.properties
│ │ ├── fe
│ │ │ └── zx
│ │ │ └── ItxAction.java
│ │ ├── lee
│ │ │ └── LoginAction.java
│ │ ├── messageResource_en_US.properties
│ │ ├── messageResource.properties
│ │ ├── messageResource_zh_CN.properties
│ │ └── struts.xml
│ ├── WebContent
│ │ ├── error.jsp
│ │ ├── index.jsp
│ │ ├── login.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── classes
│ │ │ │ ├── ApplicationResources.properties
│ │ │ │ ├── fe
│ │ │ │ │ └── zx
│ │ │ │ │ └── ItxAction.class
│ │ │ │ ├── lee
│ │ │ │ │ └── LoginAction.class
│ │ │ │ ├── messageResource_en_US.properties
│ │ │ │ ├── messageResource.properties
│ │ │ │ ├── messageResource_zh_CN.properties
│ │ │ │ └── struts.xml
│ │ │ └── web.xml
│ │ └── welcome.jsp
│ └── 使用说明.txt
├── 16
│ ├── 1
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ └── hibernate
│ │ │ │ └── HibernateUtil.class
│ │ │ ├── employee
│ │ │ │ ├── Employee.class
│ │ │ │ └── Employee.hbm.xml
│ │ │ ├── hibernate.cfg.xml
│ │ │ └── servlet
│ │ │ ├── QueryEmployee.class
│ │ │ ├── QueryOneEmployee.class
│ │ │ └── UpdateEmployee.class
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ └── hibernate
│ │ │ │ └── HibernateUtil.java
│ │ │ ├── employee
│ │ │ │ ├── Employee.hbm.xml
│ │ │ │ └── Employee.java
│ │ │ ├── hibernate.cfg.xml
│ │ │ └── servlet
│ │ │ ├── QueryEmployee.java
│ │ │ ├── QueryOneEmployee.java
│ │ │ └── UpdateEmployee.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 10
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ ├── dao
│ │ │ │ │ ├── HibernateSessionFactory.class
│ │ │ │ │ ├── HibernateUtils.class
│ │ │ │ │ └── StuDao.class
│ │ │ │ ├── servlet
│ │ │ │ │ └── StuServlet.class
│ │ │ │ ├── util
│ │ │ │ │ └── CharacterEncodingFilter.class
│ │ │ │ └── vo
│ │ │ │ ├── Student.class
│ │ │ │ └── Student.hbm.xml
│ │ │ ├── hibernate.cfg.xml
│ │ │ └── log4j.properties
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ ├── dao
│ │ │ │ │ ├── HibernateSessionFactory.java
│ │ │ │ │ ├── HibernateUtils.java
│ │ │ │ │ └── StuDao.java
│ │ │ │ ├── servlet
│ │ │ │ │ └── StuServlet.java
│ │ │ │ ├── util
│ │ │ │ │ └── CharacterEncodingFilter.java
│ │ │ │ └── vo
│ │ │ │ ├── Student.hbm.xml
│ │ │ │ └── Student.java
│ │ │ ├── hibernate.cfg.xml
│ │ │ └── log4j.properties
│ │ ├── WebContent
│ │ │ ├── images
│ │ │ │ ├── css.css
│ │ │ │ ├── foot.jpg
│ │ │ │ └── top.jpg
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── stu_list.jsp
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ ├── com
│ │ │ │ │ └── lyq
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── HibernateSessionFactory.class
│ │ │ │ │ │ ├── HibernateUtils.class
│ │ │ │ │ │ └── StuDao.class
│ │ │ │ │ ├── servlet
│ │ │ │ │ │ └── StuServlet.class
│ │ │ │ │ ├── util
│ │ │ │ │ │ └── CharacterEncodingFilter.class
│ │ │ │ │ └── vo
│ │ │ │ │ ├── Student.class
│ │ │ │ │ └── Student.hbm.xml
│ │ │ │ ├── hibernate.cfg.xml
│ │ │ │ └── log4j.properties
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 11
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ ├── dao
│ │ │ │ │ ├── BookDao.class
│ │ │ │ │ ├── HibernateSessionFactory.class
│ │ │ │ │ └── HibernateUtils.class
│ │ │ │ ├── servlet
│ │ │ │ │ └── BookServlet.class
│ │ │ │ ├── util
│ │ │ │ │ └── CharacterEncodingFilter.class
│ │ │ │ └── vo
│ │ │ │ ├── Book.class
│ │ │ │ └── Book.hbm.xml
│ │ │ ├── hibernate.cfg.xml
│ │ │ └── log4j.properties
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── lyq
│ │ │ │ ├── dao
│ │ │ │ │ ├── BookDao.java
│ │ │ │ │ ├── HibernateSessionFactory.java
│ │ │ │ │ └── HibernateUtils.java
│ │ │ │ ├── servlet
│ │ │ │ │ └── BookServlet.java
│ │ │ │ ├── util
│ │ │ │ │ └── CharacterEncodingFilter.java
│ │ │ │ └── vo
│ │ │ │ ├── Book.hbm.xml
│ │ │ │ └── Book.java
│ │ │ ├── hibernate.cfg.xml
│ │ │ └── log4j.properties
│ │ ├── WebContent
│ │ │ ├── images
│ │ │ │ ├── css.css
│ │ │ │ ├── foot.jpg
│ │ │ │ ├── middle.jpg
│ │ │ │ └── top.jpg
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── result.jsp
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ ├── com
│ │ │ │ │ └── lyq
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── BookDao.class
│ │ │ │ │ │ ├── HibernateSessionFactory.class
│ │ │ │ │ │ └── HibernateUtils.class
│ │ │ │ │ ├── servlet
│ │ │ │ │ │ └── BookServlet.class
│ │ │ │ │ ├── util
│ │ │ │ │ │ └── CharacterEncodingFilter.class
│ │ │ │ │ └── vo
│ │ │ │ │ ├── Book.class
│ │ │ │ │ └── Book.hbm.xml
│ │ │ │ ├── hibernate.cfg.xml
│ │ │ │ └── log4j.properties
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── AddProduct.class
│ │ │ │ └── product
│ │ │ │ ├── Product.class
│ │ │ │ └── Product.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── AddProduct.java
│ │ │ │ └── product
│ │ │ │ ├── Product.hbm.xml
│ │ │ │ └── Product.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── GetProduct.class
│ │ │ │ └── product
│ │ │ │ ├── Product.class
│ │ │ │ └── Product.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── GetProduct.java
│ │ │ │ └── product
│ │ │ │ ├── Product.hbm.xml
│ │ │ │ └── Product.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── LoadProduct.class
│ │ │ │ └── product
│ │ │ │ ├── Product.class
│ │ │ │ └── Product.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── LoadProduct.java
│ │ │ │ └── product
│ │ │ │ ├── Product.hbm.xml
│ │ │ │ └── Product.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 5
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── DeleteProduct.class
│ │ │ │ └── product
│ │ │ │ ├── Product.class
│ │ │ │ └── Product.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── DeleteProduct.java
│ │ │ │ └── product
│ │ │ │ ├── Product.hbm.xml
│ │ │ │ └── Product.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 6
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── UpdateProduct.class
│ │ │ │ └── product
│ │ │ │ ├── Product.class
│ │ │ │ └── Product.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── UpdateProduct.java
│ │ │ │ └── product
│ │ │ │ ├── Product.hbm.xml
│ │ │ │ └── Product.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 7
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── GetProduct.class
│ │ │ │ └── product
│ │ │ │ ├── Product.class
│ │ │ │ └── Product.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── GetProduct.java
│ │ │ │ └── product
│ │ │ │ ├── Product.hbm.xml
│ │ │ │ └── Product.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 8
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── SecondCache.class
│ │ │ │ └── product
│ │ │ │ ├── Product.class
│ │ │ │ └── Product.hbm.xml
│ │ │ ├── ehcache.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── SecondCache.java
│ │ │ │ └── product
│ │ │ │ ├── Product.hbm.xml
│ │ │ │ └── Product.java
│ │ │ ├── ehcache.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 9
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── wgh
│ │ │ │ ├── HibernateUtil.class
│ │ │ │ ├── model
│ │ │ │ │ ├── TbMessage.class
│ │ │ │ │ └── TbMessage.hbm.xml
│ │ │ │ └── servlet
│ │ │ │ └── MessageServlet.class
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── wgh
│ │ │ │ ├── HibernateUtil.java
│ │ │ │ ├── model
│ │ │ │ │ ├── TbMessage.hbm.xml
│ │ │ │ │ └── TbMessage.java
│ │ │ │ └── servlet
│ │ │ │ └── MessageServlet.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── CSS
│ │ │ │ └── style.css
│ │ │ ├── forward.jsp
│ │ │ ├── images
│ │ │ │ ├── anniu.gif
│ │ │ │ ├── bottom.jpg
│ │ │ │ ├── left.jpg
│ │ │ │ ├── right.jpg
│ │ │ │ ├── top.jpg
│ │ │ │ └── 旅游管理.jpg
│ │ │ ├── index.jsp
│ │ │ ├── listMessage.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── showMessage.jsp
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ ├── com
│ │ │ │ │ └── wgh
│ │ │ │ │ ├── HibernateUtil.class
│ │ │ │ │ ├── model
│ │ │ │ │ │ ├── TbMessage.class
│ │ │ │ │ │ └── TbMessage.hbm.xml
│ │ │ │ │ └── servlet
│ │ │ │ │ └── MessageServlet.class
│ │ │ │ └── hibernate.cfg.xml
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ └── Datebase
│ └── db_database16.sql
├── 17
│ ├── 1
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── factory
│ │ │ │ │ ├── Factory.class
│ │ │ │ │ └── Factory.hbm.xml
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── SelectProduct.class
│ │ │ │ └── product
│ │ │ │ ├── Product.class
│ │ │ │ └── Product.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── factory
│ │ │ │ │ ├── Factory.hbm.xml
│ │ │ │ │ └── Factory.java
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── SelectProduct.java
│ │ │ │ └── product
│ │ │ │ ├── Product.hbm.xml
│ │ │ │ └── Product.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 10
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── employee
│ │ │ │ │ ├── Employee.class
│ │ │ │ │ └── Employee.hbm.xml
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateUtil.class
│ │ │ │ └── servlet
│ │ │ │ └── QueryEmployee.class
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── employee
│ │ │ │ │ ├── Employee.hbm.xml
│ │ │ │ │ └── Employee.java
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateUtil.java
│ │ │ │ └── servlet
│ │ │ │ └── QueryEmployee.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── update.gif
│ │ │ ├── update.jsp
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 11
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── employee
│ │ │ │ │ ├── Employee.class
│ │ │ │ │ └── Employee.hbm.xml
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateUtil.class
│ │ │ │ └── main
│ │ │ │ └── GroupBy.class
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── employee
│ │ │ │ │ ├── Employee.hbm.xml
│ │ │ │ │ └── Employee.java
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateUtil.java
│ │ │ │ └── main
│ │ │ │ └── GroupBy.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 12
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── idcard
│ │ │ │ │ ├── IDcard.class
│ │ │ │ │ └── IDcard.hbm.xml
│ │ │ │ ├── people
│ │ │ │ │ ├── People.class
│ │ │ │ │ └── People.hbm.xml
│ │ │ │ └── servlet
│ │ │ │ └── QueryPeople.class
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── idcard
│ │ │ │ │ ├── IDcard.hbm.xml
│ │ │ │ │ └── IDcard.java
│ │ │ │ ├── people
│ │ │ │ │ ├── People.hbm.xml
│ │ │ │ │ └── People.java
│ │ │ │ └── servlet
│ │ │ │ └── QueryPeople.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 13
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── employee
│ │ │ │ │ ├── Employee.class
│ │ │ │ │ └── Employee.hbm.xml
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateUtil.class
│ │ │ │ └── main
│ │ │ │ └── QueryMinID.class
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── employee
│ │ │ │ │ ├── Employee.hbm.xml
│ │ │ │ │ └── Employee.java
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateUtil.java
│ │ │ │ └── main
│ │ │ │ └── QueryMinID.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 14
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── factory
│ │ │ │ │ ├── Factory.class
│ │ │ │ │ └── Factory.hbm.xml
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── product
│ │ │ │ │ ├── Product.class
│ │ │ │ │ └── Product.hbm.xml
│ │ │ │ └── servlet
│ │ │ │ ├── AddProduct.class
│ │ │ │ ├── QueryFactory.class
│ │ │ │ └── QueryProduct.class
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── factory
│ │ │ │ │ ├── Factory.hbm.xml
│ │ │ │ │ └── Factory.java
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── product
│ │ │ │ │ ├── Product.hbm.xml
│ │ │ │ │ └── Product.java
│ │ │ │ └── servlet
│ │ │ │ ├── AddProduct.java
│ │ │ │ ├── QueryFactory.java
│ │ │ │ └── QueryProduct.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── AddProduct.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── ProductList.jsp
│ │ │ ├── update.gif
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 15
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── employee
│ │ │ │ │ ├── Employee.class
│ │ │ │ │ └── Employee.hbm.xml
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateUtil.class
│ │ │ │ └── servlet
│ │ │ │ └── QueryEmployee.class
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── employee
│ │ │ │ │ ├── Employee.hbm.xml
│ │ │ │ │ └── Employee.java
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateUtil.java
│ │ │ │ └── servlet
│ │ │ │ └── QueryEmployee.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── employee.jsp
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── factory
│ │ │ │ │ ├── Factory.class
│ │ │ │ │ └── Factory.hbm.xml
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── SelectProduct.class
│ │ │ │ └── product
│ │ │ │ ├── Product.class
│ │ │ │ └── Product.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── factory
│ │ │ │ │ ├── Factory.hbm.xml
│ │ │ │ │ └── Factory.java
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── SelectProduct.java
│ │ │ │ └── product
│ │ │ │ ├── Product.hbm.xml
│ │ │ │ └── Product.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── idcard
│ │ │ │ │ ├── IDcard.class
│ │ │ │ │ └── IDcard.hbm.xml
│ │ │ │ └── people
│ │ │ │ ├── People.class
│ │ │ │ └── People.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── idcard
│ │ │ │ │ ├── IDcard.hbm.xml
│ │ │ │ │ └── IDcard.java
│ │ │ │ └── people
│ │ │ │ ├── People.hbm.xml
│ │ │ │ └── People.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── idcard
│ │ │ │ │ ├── IDcard.class
│ │ │ │ │ └── IDcard.hbm.xml
│ │ │ │ └── people
│ │ │ │ ├── People.class
│ │ │ │ └── People.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── idcard
│ │ │ │ │ ├── IDcard.hbm.xml
│ │ │ │ │ └── IDcard.java
│ │ │ │ └── people
│ │ │ │ ├── People.hbm.xml
│ │ │ │ └── People.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 5
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── Manger.class
│ │ │ │ ├── role
│ │ │ │ │ ├── Role.class
│ │ │ │ │ └── Role.hbm.xml
│ │ │ │ └── user
│ │ │ │ ├── User.class
│ │ │ │ └── User.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── Manger.java
│ │ │ │ ├── role
│ │ │ │ │ ├── Role.hbm.xml
│ │ │ │ │ └── Role.java
│ │ │ │ └── user
│ │ │ │ ├── User.hbm.xml
│ │ │ │ └── User.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 6
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── idcard
│ │ │ │ │ ├── IDcard.class
│ │ │ │ │ └── IDcard.hbm.xml
│ │ │ │ ├── main
│ │ │ │ │ └── Manger.class
│ │ │ │ └── people
│ │ │ │ ├── People.class
│ │ │ │ └── People.hbm.xml
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── idcard
│ │ │ │ │ ├── IDcard.hbm.xml
│ │ │ │ │ └── IDcard.java
│ │ │ │ ├── main
│ │ │ │ │ └── Manger.java
│ │ │ │ └── people
│ │ │ │ ├── People.hbm.xml
│ │ │ │ └── People.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 7
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── AddPerson.class
│ │ │ │ └── person
│ │ │ │ ├── Person.class
│ │ │ │ ├── Person.hbm.xml
│ │ │ │ ├── Staffer.class
│ │ │ │ └── Student.class
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── AddPerson.java
│ │ │ │ └── person
│ │ │ │ ├── Person.hbm.xml
│ │ │ │ ├── Person.java
│ │ │ │ ├── Staffer.java
│ │ │ │ └── Student.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 8
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── AddPerson.class
│ │ │ │ └── person
│ │ │ │ ├── Person.class
│ │ │ │ ├── Person.hbm.xml
│ │ │ │ ├── Staffer.class
│ │ │ │ └── Student.class
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── AddPerson.java
│ │ │ │ └── person
│ │ │ │ ├── Person.hbm.xml
│ │ │ │ ├── Person.java
│ │ │ │ ├── Staffer.java
│ │ │ │ └── Student.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 9
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.class
│ │ │ │ ├── main
│ │ │ │ │ └── AddPerson.class
│ │ │ │ └── person
│ │ │ │ ├── Person.class
│ │ │ │ ├── Person.hbm.xml
│ │ │ │ ├── Staffer.class
│ │ │ │ └── Student.class
│ │ │ └── hibernate.cfg.xml
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── hibernate
│ │ │ │ │ └── HibernateInitialize.java
│ │ │ │ ├── main
│ │ │ │ │ └── AddPerson.java
│ │ │ │ └── person
│ │ │ │ ├── Person.hbm.xml
│ │ │ │ ├── Person.java
│ │ │ │ ├── Staffer.java
│ │ │ │ └── Student.java
│ │ │ └── hibernate.cfg.xml
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ └── datebase17
│ └── db_database17.sql
├── 18
│ ├── 1
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.class
│ │ │ └── user
│ │ │ └── User.class
│ │ ├── src
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.java
│ │ │ └── user
│ │ │ └── User.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.class
│ │ │ └── user
│ │ │ └── User.class
│ │ ├── src
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.java
│ │ │ └── user
│ │ │ └── User.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.class
│ │ │ └── user
│ │ │ └── User.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.java
│ │ │ └── user
│ │ │ └── User.java
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ ├── applicationContext.xml
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.class
│ │ │ └── user
│ │ │ ├── PrintInfo.class
│ │ │ └── User.class
│ │ ├── src
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.java
│ │ │ └── user
│ │ │ ├── PrintInfo.java
│ │ │ └── User.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 5
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.class
│ │ │ └── user
│ │ │ ├── PrintInfo.class
│ │ │ └── User.class
│ │ ├── src
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.java
│ │ │ └── user
│ │ │ ├── PrintInfo.java
│ │ │ └── User.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 6
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── MyDateEditor.class
│ │ │ ├── PringUserInfo.class
│ │ │ └── UserInfo.class
│ │ ├── src
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── MyDateEditor.java
│ │ │ ├── PringUserInfo.java
│ │ │ └── UserInfo.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 7
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.class
│ │ │ └── user
│ │ │ └── User.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.java
│ │ │ └── user
│ │ │ └── User.java
│ │ ├── WebContent
│ │ │ ├── error.jsp
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── succ.jsp
│ │ │ └── WEB-INF
│ │ │ ├── applicationContext.xml
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ └── 8
│ ├── build
│ │ └── classes
│ │ ├── applicationContext.xml
│ │ ├── com
│ │ │ └── mr
│ │ │ └── LanguageManager.class
│ │ ├── messages_en_US.properties
│ │ └── messages.properties
│ ├── src
│ │ ├── applicationContext.xml
│ │ ├── com
│ │ │ └── mr
│ │ │ └── LanguageManager.java
│ │ ├── messages_en_US.properties
│ │ └── messages.properties
│ ├── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ └── 使用说明.txt
├── 19
│ ├── 1
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── log
│ │ │ │ └── LoggerExecute.class
│ │ │ ├── main
│ │ │ │ └── Manger.class
│ │ │ └── target
│ │ │ └── Target.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── log
│ │ │ │ └── LoggerExecute.java
│ │ │ ├── main
│ │ │ │ └── Manger.java
│ │ │ └── target
│ │ │ └── Target.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── dao
│ │ │ │ ├── UserDAO.class
│ │ │ │ └── UserDAOImpl.class
│ │ │ ├── main
│ │ │ │ └── Manger.class
│ │ │ └── user
│ │ │ └── User.class
│ │ ├── src
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── dao
│ │ │ │ ├── UserDAOImpl.java
│ │ │ │ └── UserDAO.java
│ │ │ ├── main
│ │ │ │ └── Manger.java
│ │ │ └── user
│ │ │ └── User.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.class
│ │ │ └── transaction
│ │ │ ├── TransactionExample$1.class
│ │ │ └── TransactionExample.class
│ │ ├── src
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── main
│ │ │ │ └── Manger.java
│ │ │ └── transaction
│ │ │ └── TransactionExample.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── dao
│ │ │ │ └── AddDAO.class
│ │ │ ├── main
│ │ │ │ └── Manger.class
│ │ │ └── user
│ │ │ └── User.class
│ │ ├── src
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── dao
│ │ │ │ └── AddDAO.java
│ │ │ ├── main
│ │ │ │ └── Manger.java
│ │ │ └── user
│ │ │ └── User.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 5
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ └── main
│ │ │ └── AddUser.class
│ │ ├── src
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ └── main
│ │ │ └── AddUser.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 6
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── dao
│ │ │ │ └── UserDAO.class
│ │ │ ├── main
│ │ │ │ └── AddUser.class
│ │ │ └── user
│ │ │ ├── User.class
│ │ │ └── User.hbm.xml
│ │ ├── src
│ │ │ ├── applicationContext.xml
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── dao
│ │ │ │ └── UserDAO.java
│ │ │ ├── main
│ │ │ │ └── AddUser.java
│ │ │ └── user
│ │ │ ├── User.hbm.xml
│ │ │ └── User.java
│ │ ├── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 7
│ │ ├── build
│ │ │ └── classes
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── aop
│ │ │ │ │ ├── AfterAdvice.class
│ │ │ │ │ ├── BeforeAdivsor.class
│ │ │ │ │ ├── ConnClass.class
│ │ │ │ │ ├── ExecuteInsert.class
│ │ │ │ │ └── UserInterface.class
│ │ │ │ └── mvc
│ │ │ │ └── CommitAction.class
│ │ │ └── log4j.properties
│ │ ├── src
│ │ │ ├── com
│ │ │ │ └── mr
│ │ │ │ ├── aop
│ │ │ │ │ ├── AfterAdvice.java
│ │ │ │ │ ├── BeforeAdivsor.java
│ │ │ │ │ ├── ConnClass.java
│ │ │ │ │ ├── ExecuteInsert.java
│ │ │ │ │ └── UserInterface.java
│ │ │ │ └── mvc
│ │ │ │ └── CommitAction.java
│ │ │ └── log4j.properties
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ ├── servlet_cogfig.xml
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 8
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── dao
│ │ │ │ └── DAOSupport.class
│ │ │ ├── main
│ │ │ │ └── AddUser.class
│ │ │ └── user
│ │ │ ├── User.class
│ │ │ └── User.hbm.xml
│ │ ├── src
│ │ │ └── com
│ │ │ └── mr
│ │ │ ├── dao
│ │ │ │ └── DAOSupport.java
│ │ │ ├── main
│ │ │ │ └── AddUser.java
│ │ │ └── user
│ │ │ ├── User.hbm.xml
│ │ │ └── User.java
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ ├── applicationContext.xml
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ └── database
│ └── db_database19.sql
├── 2
│ ├── 1
│ │ └── 1.html
│ ├── 10
│ │ └── 10.html
│ ├── 11
│ │ └── 11.html
│ ├── 12
│ │ ├── 12.html
│ │ └── css.css
│ ├── 13
│ │ └── 13.html
│ ├── 14
│ │ └── 14.html
│ ├── 15
│ │ ├── 14.html
│ │ ├── bike.jpg
│ │ └── Thumbs.db
│ ├── 16
│ │ └── 15.html
│ ├── 17
│ │ ├── 16.html
│ │ ├── note.ico
│ │ └── Thumbs.db
│ ├── 2
│ │ └── 2.html
│ ├── 3
│ │ └── 3.html
│ ├── 4
│ │ └── 4.html
│ ├── 5
│ │ └── 5.html
│ ├── 6
│ │ └── 6.html
│ ├── 7
│ │ ├── 7.html
│ │ └── images
│ │ ├── 01.gif
│ │ ├── 02.gif
│ │ ├── 03.jpg
│ │ ├── 04.gif
│ │ ├── btn_bg.jpg
│ │ ├── line.gif
│ │ └── reg.gif
│ ├── 8
│ │ ├── 8.html
│ │ ├── css.css
│ │ ├── images
│ │ │ ├── ASP.NET.jpg
│ │ │ ├── C#.jpg
│ │ │ ├── Java .jpg
│ │ │ └── VB.jpg
│ │ └── message.html
│ └── 9
│ └── 9.html
├── 20
│ ├── 1
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wgh
│ │ │ ├── filter
│ │ │ │ └── CharacterEncodingFilter.class
│ │ │ └── servlet
│ │ │ └── PlacardServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── wgh
│ │ │ ├── filter
│ │ │ │ └── CharacterEncodingFilter.java
│ │ │ └── servlet
│ │ │ └── PlacardServlet.java
│ │ ├── WebContent
│ │ │ ├── CSS
│ │ │ │ └── style.css
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ └── com
│ │ │ │ └── wgh
│ │ │ │ ├── filter
│ │ │ │ │ └── CharacterEncodingFilter.class
│ │ │ │ └── servlet
│ │ │ │ └── PlacardServlet.class
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── wgh
│ │ │ ├── filter
│ │ │ │ └── CharacterEncodingFilter.class
│ │ │ ├── model
│ │ │ │ └── PlacardForm.class
│ │ │ └── servlet
│ │ │ └── PlacardServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── wgh
│ │ │ ├── filter
│ │ │ │ └── CharacterEncodingFilter.java
│ │ │ ├── model
│ │ │ │ └── PlacardForm.java
│ │ │ └── servlet
│ │ │ └── PlacardServlet.java
│ │ └── WebContent
│ │ ├── CSS
│ │ │ └── style.css
│ │ ├── images
│ │ │ ├── del.gif
│ │ │ ├── modify.gif
│ │ │ └── 清空.png
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── modify.jsp
│ │ ├── placardList.jsp
│ │ ├── WEB-INF
│ │ │ ├── classes
│ │ │ │ └── com
│ │ │ │ └── wgh
│ │ │ │ ├── filter
│ │ │ │ │ └── CharacterEncodingFilter.class
│ │ │ │ ├── model
│ │ │ │ │ └── PlacardForm.class
│ │ │ │ └── servlet
│ │ │ │ └── PlacardServlet.class
│ │ │ └── web.xml
│ │ ├── xml
│ │ │ └── placard.xml
│ │ └── 使用说明.txt
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── servlet
│ │ │ └── BookServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── servlet
│ │ │ └── BookServlet.java
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ └── com
│ │ │ │ └── lyq
│ │ │ │ └── servlet
│ │ │ │ └── BookServlet.class
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── Main.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── Main.java
│ │ ├── WebContent
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 5
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── dao
│ │ │ │ ├── DataBaseUtil.class
│ │ │ │ └── NewsDao.class
│ │ │ ├── News.class
│ │ │ └── servlet
│ │ │ ├── FindAllServlet.class
│ │ │ └── RssServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── dao
│ │ │ │ ├── DataBaseUtil.java
│ │ │ │ └── NewsDao.java
│ │ │ ├── News.java
│ │ │ └── servlet
│ │ │ ├── FindAllServlet.java
│ │ │ └── RssServlet.java
│ │ ├── WebContent
│ │ │ ├── index.jsp
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── news_list.jsp
│ │ │ └── WEB-INF
│ │ │ ├── classes
│ │ │ │ └── com
│ │ │ │ └── lyq
│ │ │ │ ├── dao
│ │ │ │ │ ├── DataBaseUtil.class
│ │ │ │ │ └── NewsDao.class
│ │ │ │ ├── News.class
│ │ │ │ └── servlet
│ │ │ │ ├── FindAllServlet.class
│ │ │ │ └── RssServlet.class
│ │ │ └── web.xml
│ │ └── 使用说明.txt
│ └── 6
│ ├── build
│ │ └── classes
│ │ └── com
│ │ └── lyq
│ │ ├── FindServlet.class
│ │ └── Student.class
│ ├── src
│ │ └── com
│ │ └── lyq
│ │ ├── FindServlet.java
│ │ └── Student.java
│ ├── WebContent
│ │ ├── index.jsp
│ │ ├── list.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── Student.xml
│ │ └── WEB-INF
│ │ ├── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── FindServlet.class
│ │ │ └── Student.class
│ │ └── web.xml
│ └── 使用说明.txt
├── 21
│ ├── build
│ │ └── classes
│ │ └── com
│ │ └── wgh
│ │ ├── dao
│ │ │ ├── DiaryDao.class
│ │ │ └── UserDao.class
│ │ ├── filter
│ │ │ └── CharacterEncodingFilter.class
│ │ ├── model
│ │ │ ├── CityMap.class
│ │ │ ├── Diary.class
│ │ │ └── User.class
│ │ ├── servlet
│ │ │ ├── CreateImg.class
│ │ │ ├── DiaryServlet.class
│ │ │ └── UserServlet.class
│ │ └── tools
│ │ ├── ConnDB.class
│ │ ├── connDB.properties
│ │ └── MyPagination.class
│ ├── src
│ │ └── com
│ │ └── wgh
│ │ ├── dao
│ │ │ ├── DiaryDao.java
│ │ │ └── UserDao.java
│ │ ├── filter
│ │ │ └── CharacterEncodingFilter.java
│ │ ├── model
│ │ │ ├── CityMap.java
│ │ │ ├── Diary.java
│ │ │ └── User.java
│ │ ├── servlet
│ │ │ ├── CreateImg.java
│ │ │ ├── DiaryServlet.java
│ │ │ └── UserServlet.java
│ │ └── tools
│ │ ├── ConnDB.java
│ │ ├── connDB.properties
│ │ └── MyPagination.java
│ ├── WebContent
│ │ ├── bottom.jsp
│ │ ├── CSS
│ │ │ └── style.css
│ │ ├── Database
│ │ │ └── db_9griddiary.sql
│ │ ├── forgetPwd_1.jsp
│ │ ├── forgetPwd_2.jsp
│ │ ├── images
│ │ │ ├── 1.png
│ │ │ ├── 2.png
│ │ │ ├── 3.png
│ │ │ ├── 4.png
│ │ │ ├── 5.png
│ │ │ ├── 6.png
│ │ │ ├── 7.png
│ │ │ ├── 8.png
│ │ │ ├── 9.png
│ │ │ ├── bg_00.jpg
│ │ │ ├── bg_01.jpg
│ │ │ ├── bg_02.jpg
│ │ │ ├── bg_bottom.jpg
│ │ │ ├── bg_top.jpg
│ │ │ ├── diary
│ │ │ │ ├── -1625618782951844312.png
│ │ │ │ ├── -1625618782951844312scale.jpg
│ │ │ │ ├── 2030326276105596531.png
│ │ │ │ ├── 2030326276105596531scale.jpg
│ │ │ │ ├── -2201304326449572193.png
│ │ │ │ ├── -2201304326449572193scale.jpg
│ │ │ │ ├── 241344336121425196.png
│ │ │ │ ├── 241344336121425196scale.jpg
│ │ │ │ ├── -5039247624120215442.png
│ │ │ │ ├── -5039247624120215442scale.jpg
│ │ │ │ ├── 7076008621496558673.png
│ │ │ │ ├── 7076008621496558673scale.jpg
│ │ │ │ └── Thumbs.db
│ │ │ ├── diaryBg_00.jpg
│ │ │ ├── diaryBg_01.jpg
│ │ │ ├── diaryBg_02.jpg
│ │ │ ├── ico01.ico
│ │ │ ├── ico02.ico
│ │ │ ├── loading.gif
│ │ │ ├── login.jpg
│ │ │ ├── navigation_bg.jpg
│ │ │ ├── template_01.png
│ │ │ ├── template_02.png
│ │ │ ├── template_03.png
│ │ │ └── Thumbs.db
│ │ ├── index.jsp
│ │ ├── JS
│ │ │ ├── AjaxRequest.js
│ │ │ ├── excanvas-modified.js
│ │ │ ├── jquery-1.3.2.min.js
│ │ │ ├── jquery.pngFix.js
│ │ │ ├── jquery.pngFix.pack.js
│ │ │ └── wghFunction.js
│ │ ├── listAllDiary.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── preview.jsp
│ │ ├── register.jsp
│ │ ├── top.jsp
│ │ ├── userMessage.jsp
│ │ ├── WEB-INF
│ │ │ └── web.xml
│ │ └── writeDiary.jsp
│ └── 使用说明.txt
├── 3
│ ├── 1
│ │ └── 1.html
│ ├── 10
│ │ └── 10.html
│ ├── 11
│ │ └── 11.html
│ ├── 12
│ │ ├── 12.html
│ │ ├── CSS
│ │ │ └── style.css
│ │ └── head.jpg
│ ├── 13
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 14
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 15
│ │ └── WebContent
│ │ ├── function.js
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── style.css
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 2
│ │ ├── 2.html
│ │ └── style.css
│ ├── 3
│ │ └── 3.html
│ ├── 4
│ │ └── 4.html
│ ├── 5
│ │ └── 5.html
│ ├── 6
│ │ └── 6.html
│ ├── 7
│ │ └── 7.html
│ ├── 8
│ │ ├── 8.html
│ │ └── CSS
│ │ └── style.css
│ └── 9
│ └── 9.html
├── 5
│ ├── 1
│ │ └── WebContent
│ │ ├── index.jsp
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ ├── 2
│ │ └── WebContent
│ │ ├── copyright.jsp
│ │ ├── images
│ │ │ ├── banner.JPG
│ │ │ ├── center.JPG
│ │ │ └── copyright.JPG
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── top.jsp
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 3
│ │ └── WebContent
│ │ ├── index.jsp
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ ├── 4
│ │ └── WebContent
│ │ ├── index.jsp
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ ├── 5
│ │ └── WebContent
│ │ ├── copyright.jsp
│ │ ├── images
│ │ │ ├── banner.JPG
│ │ │ ├── center.JPG
│ │ │ └── copyright.JPG
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── top.jsp
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 6
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── login.jsp
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ ├── 7
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 8
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ └── 9
│ └── WebContent
│ ├── index.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ └── WEB-INF
│ └── web.xml
├── 6
│ ├── 1
│ │ └── WebContent
│ │ ├── deal.jsp
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 10
│ │ └── WebContent
│ │ ├── deal.jsp
│ │ ├── error.jsp
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 11
│ │ └── WebContent
│ │ ├── deal.jsp
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 12
│ │ └── WebContent
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ ├── 2
│ │ └── WebContent
│ │ ├── deal.jsp
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 3
│ │ └── WebContent
│ │ ├── deal.jsp
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 4
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── show.jsp
│ ├── 5
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 6
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── login.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 7
│ │ └── WebContent
│ │ ├── css
│ │ │ └── style.css
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── result.jsp
│ │ ├── session.jsp
│ │ └── WEB-INF
│ │ ├── classes
│ │ │ └── com
│ │ │ └── cdd
│ │ │ └── filter
│ │ │ └── SetCharacterEncodingFilter.class
│ │ └── web.xml
│ ├── 8
│ │ └── WebContent
│ │ ├── index.jsp
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ └── 9
│ └── WebContent
│ ├── error.jsp
│ ├── index.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ └── WEB-INF
│ └── web.xml
├── 7
│ ├── 1
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Email.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Email.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── result.jsp
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 10
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Counter.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Counter.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Produce.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Produce.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Produce.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Produce.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Person.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Person.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── reg.jsp
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 5
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── CharactorEncoding.class
│ │ │ └── News.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── CharactorEncoding.java
│ │ │ └── News.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── release.jsp
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 6
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── DateBean.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── DateBean.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 7
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Convert.class
│ │ │ └── Paper.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ ├── Convert.java
│ │ │ └── Paper.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── reg.jsp
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 8
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Student.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── bean
│ │ │ └── Student.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ └── 9
│ ├── build
│ │ └── classes
│ │ └── com
│ │ └── lyq
│ │ └── bean
│ │ └── User.class
│ ├── src
│ │ └── com
│ │ └── lyq
│ │ └── bean
│ │ └── User.java
│ └── WebContent
│ ├── index.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── reg.jsp
│ └── WEB-INF
│ └── web.xml
├── 8
│ ├── 1
│ │ └── TestServlet .java
│ ├── 2
│ │ └── WordServlet .java
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── CharFilter.class
│ │ │ └── MyServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── CharFilter.java
│ │ │ └── MyServlet.java
│ │ └── WebContent
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ ├── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── MyServlet.class
│ │ └── web.xml
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── servlet
│ │ │ └── RegServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── servlet
│ │ │ └── RegServlet.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 5
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── servlet
│ │ │ └── AddServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── servlet
│ │ │ └── AddServlet.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ └── 6
│ ├── build
│ │ └── classes
│ │ └── com
│ │ └── lyq
│ │ └── servlet
│ │ └── CalculateServlet.class
│ ├── src
│ │ └── com
│ │ └── lyq
│ │ └── servlet
│ │ └── CalculateServlet.java
│ └── WebContent
│ ├── index.jsp
│ ├── META-INF
│ │ └── MANIFEST.MF
│ └── WEB-INF
│ ├── classes
│ │ └── com
│ │ └── lyq
│ │ └── servlet
│ │ └── CalculateServlet.class
│ └── web.xml
├── 9
│ ├── 1
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── CountFilter.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ └── CountFilter.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 2
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── AddServlet.class
│ │ │ └── CharactorFilter.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── AddServlet.java
│ │ │ └── CharactorFilter.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ └── web.xml
│ ├── 3
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── listener
│ │ │ ├── CharactorFilter.class
│ │ │ ├── MyContentListener.class
│ │ │ ├── UserInfoList.class
│ │ │ └── UserInfoTrace.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── listener
│ │ │ ├── CharactorFilter.java
│ │ │ ├── MyContentListener.java
│ │ │ ├── UserInfoList.java
│ │ │ └── UserInfoTrace.java
│ │ └── WebContent
│ │ ├── css
│ │ │ └── style.css
│ │ ├── image
│ │ │ ├── background1.jpg
│ │ │ └── background2.jpg
│ │ ├── index.jsp
│ │ ├── loginOut.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── showUser.jsp
│ │ └── WEB-INF
│ │ ├── classes
│ │ │ └── com
│ │ │ └── listener
│ │ │ ├── UserInfoList.class
│ │ │ └── UserInfoTrace.class
│ │ └── web.xml
│ ├── 4
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── mingrisoft
│ │ │ └── SaveServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── mingrisoft
│ │ │ └── SaveServlet.java
│ │ ├── WebContent
│ │ │ ├── css
│ │ │ │ └── style.css
│ │ │ ├── images
│ │ │ │ └── bg.jpg
│ │ │ ├── index.jsp
│ │ │ └── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── 使用说明.txt
│ ├── 5
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── mingrisoft
│ │ │ └── UploadServlet.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── mingrisoft
│ │ │ └── UploadServlet.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ └── META-INF
│ │ └── MANIFEST.MF
│ ├── 6
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── MessageServlet.class
│ │ │ ├── WordFilter$Request.class
│ │ │ └── WordFilter.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── MessageServlet.java
│ │ │ └── WordFilter.java
│ │ └── WebContent
│ │ ├── images
│ │ │ └── bg.jpg
│ │ ├── index.jsp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ ├── classes
│ │ │ └── com
│ │ │ └── lyq
│ │ │ ├── MessageServlet.class
│ │ │ ├── WordFilter$Request.class
│ │ │ └── WordFilter.class
│ │ └── web.xml
│ ├── 7
│ │ ├── build
│ │ │ └── classes
│ │ │ └── com
│ │ │ └── listener
│ │ │ └── Listenerlocalhost.class
│ │ ├── src
│ │ │ └── com
│ │ │ └── listener
│ │ │ └── Listenerlocalhost.java
│ │ └── WebContent
│ │ ├── index.jsp
│ │ ├── leftsearch.gif
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── show.htm
│ │ └── WEB-INF
│ │ ├── classes
│ │ │ └── com
│ │ │ └── listener
│ │ │ └── Listenerlocalhost.class
│ │ └── web.xml
│ └── Datebase
│ ├── db_database09_log.ldf
│ └── db_database09.mdf
└── 特别说明.txt
1801 directories, 1540 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论