﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:book="http://www.netyi.net"><channel><title>JSP_程序设计与WEB开发_计算机类_最新资料_得益网</title><link>http://www.netyi.net/Category/26</link><description>JSP_程序设计与WEB开发_计算机类_最新资料_得益网</description><copyright /><generator>得益网</generator>
<item><title>JSP Tag Libraries</title><link>http://www.netyi.net/training/79ba9bb5-7122-4520-ba95-66af5c9f7690</link><description>JSP custom tags is a new technology that has one main objective: defining a component&lt;br/&gt;model for JavaServer Pages (JSP). JSP tags let programmers develop JSP-aware&lt;br/&gt;components that can later be used by others in the development process, starting&lt;br/&gt;with peer developers and ending with nonprogrammer HTML coders who are part&lt;br/&gt;of the team.&lt;br/&gt;Using custom tags in web projects is a great productivity boost. By building a&lt;br/&gt;tag-based application you can assemble your project, using existing tags that are&lt;br/&gt;available from third parties (either as open-source or for purchase) and, more&lt;br/&gt;importantly, develop your own JSP tags to meet your specific needs. Developing&lt;br/&gt;custom tags is the focus of this book.&lt;br/&gt;&lt;br/&gt;How is it organized?&lt;br/&gt;The book has 15 chapters organized into 5 parts, plus 3 appendices, as follows:&lt;br/&gt;Part I The language of tags Chapter 1 introduces the ABCs of the Web. It is&lt;br/&gt;intended for readers with modest knowledge of web technologies, such as HTTP and&lt;br/&gt;web servers, and will bring them up to speed on these topics. The chapter answers&lt;br/&gt;questions such as: How are web clients and servers able to communicate? Why is&lt;br/&gt;there a need to extend the web server? This chapter also presents traditional non-Java&lt;br/&gt;server extension methods that are common practice today. The chapter ends with a&lt;br/&gt;discussion of the cellular device and the new complexity it adds to the Web.&lt;br/&gt;Chapter 2 presents Java methods used to extend the web server: servlets and JSP.&lt;br/&gt;Servlets are the foundation for JSP, and, in order to develop JSP tags you need to&lt;br/&gt;know something about JSP. The chapter presents these technologies in enough detail&lt;br/&gt;to enable you to follow the examples in later chapters.&lt;br/&gt;Chapter 3 is the first to deal entirely with tags. It presents a set of “hello world”&lt;br/&gt;tags that covers the two basic tag types (tags with and without body) and shows&lt;br/&gt;how to compile and test them. By the end of this chapter not only will you know&lt;br/&gt;what tags look like, you will also know the mechanics related to compiling and testing&lt;br/&gt;tags within the Tomcat container.&lt;br/&gt;Chapters 4 and 5 present the rules for writing JSP tags. These rules are the tag&lt;br/&gt;API set and life cycle as defined in the JSP specification and the chapters will show&lt;br/&gt;how the tags reflect their needs and integrate them into the JSP runtime. The JSP&lt;br/&gt;specification defines which API the tags can use, which API the tag needs to implement,&lt;br/&gt;as well as the life cycle for the tag (i.e., when it gets created, when it executes,&lt;br/&gt;etc.) but it falls short in fully explaining them. Explaining the “dry” specification is&lt;br/&gt;what these two chapters aim to do. After reading them, you will know when and&lt;br/&gt;why the methods in your tags are being called and who is calling them. Chapter 5&lt;br/&gt;marks the end of part I whose role was to introduce the basics of tags and their&lt;br/&gt;environment. The next chapters will deal directly with tag development.&lt;br/&gt;Part II Basic techniques Chapter 6 presents several elements of tag programming&lt;br/&gt;and code snippets that are the cornerstone of tag development. For example, many&lt;br/&gt;tags need to print information back to the user, yet the Tag API does not contain a&lt;br/&gt;print method—so how do you print? Many tags need to access their body content&lt;br/&gt;and manipulate it—but how do you do that? These questions and others are posed,&lt;br/&gt;answered, and explained in chapter 6, accompanied by sample code that shows you&lt;br/&gt;how to take advantage of various techniques. Later chapters take the issues discussed&lt;br/&gt;here and integrate them into the full-fledged tag libraries developed&lt;br/&gt;throughout the book.&lt;br/&gt;Chapter 7 presents the development of a mail-sending tag library. The key issue&lt;br/&gt;here is not sending mail but rather doing it in a user-friendly manner. First, the&lt;br/&gt;chapter presents the API that a Java component can use to send email, and then&lt;br/&gt;shows the development of several mail-sender tags. The chapter starts with a na?ve&lt;br/&gt;implementation that is hard for the nonprogrammer to use and ends with a small&lt;br/&gt;mail-sender library that is powerful enough to send complex email, yet simple&lt;br/&gt;enough to be used by nonprogrammers. At the end of the chapter we show how&lt;br/&gt;parameters can be validated using assertion tags.&lt;br/&gt;Chapter 8 deals with JavaBeans and JSP tag integration. JavaBeans are Java components;&lt;br/&gt;JSP tags are another type of Java component, geared toward the Web and&lt;br/&gt;the nonprogrammer. It is obvious that one day these two component models will&lt;br/&gt;come together. Indeed, this chapter explains how JSP tags can take advantage of&lt;br/&gt;JavaBeans and use them. Making your tags JavaBeans-aware can help you in reusing&lt;br/&gt;all the logic already implemented in the beans. This chapter shows you how. Chapter&lt;br/&gt;8 ends part II of the book, which covered programming techniques. Part III will&lt;br/&gt;discuss developing tags whose goals are more ambitious; for example, controlling&lt;br/&gt;the flow of a JSP file or accessing the application back end.&lt;br/&gt;Part III Advanced techniques Chapter 9 discusses posing conditions with tags, or,&lt;br/&gt;to be more precise, tags with conditional body execution. Posing conditions on a&lt;br/&gt;tag’s body is the equivalent of having an if clause in a programming language; it is&lt;br/&gt;important when you want to generate conditional content (e.g., for Internet&lt;br/&gt;Explorer, generate this content; for Netscape, generate another content). This&lt;br/&gt;chapter presents techniques for creating tags whose semantics closely resemble&lt;br/&gt;those of the if and switch statements in Java.&lt;br/&gt;Chapter 10 is devoted to performing loops with tags. Tags can repeat their body&lt;br/&gt;execution, which means that tags can loop over their body much like the for statement&lt;br/&gt;can do in Java. Implementing loops with JSP tags can be tricky, especially if&lt;br/&gt;you want to take advantage of some of the new JSP1.2 features and still have the&lt;br/&gt;same code run with JSP1.1. Chapter 10 solves all of these problems for you. Essentially&lt;br/&gt;this framework lets you iterate on anything with iteration semantics (e.g.,&lt;br/&gt;arrays, vectors, hashtables, etc.) and exposes the iterator object to the JSP file (to be&lt;br/&gt;used by other tags or scriptlets) across all JSP versions.&lt;br/&gt;Chapter 11 is geared toward developers who wish to develop database-driven&lt;br/&gt;sites with JSP tags. Databases are one of the most common tools on the Web and&lt;br/&gt;there is a need to bring them to the nonprogrammer in a pervasive way. This chapter&lt;br/&gt;presents the development of a tag library whose role is to integrate data queried&lt;br/&gt;from a database into the content returned to the user. The library is developed with&lt;br/&gt;several goals in mind, such as integration with servlets (to assist Model-2 architectures),&lt;br/&gt;application configuration, and ease of use.&lt;br/&gt;Chapter 12 explains how tags can be integrated into a J2EE web application.&lt;br/&gt;J2EE is an emerging standard for server-side Java applications; it builds around&lt;br/&gt;Enterprise Java Beans (EJBs) to access distributed and transactional business logic&lt;br/&gt;and around servlets and JSP to provide web interface. This chapter explains the&lt;br/&gt;basics of J2EE and then shows how J2EE can easily be accessed from within tags.&lt;br/&gt;For this purpose, chapter 12 presents tags which use EJBs, access J2EE resources&lt;br/&gt;using JNDI, and so forth.&lt;br/&gt;Part IV Case studies This part deals with practical issues related to tag development&lt;br/&gt;and deployment. Chapters 13 and 14 present two full-fledged case studies&lt;br/&gt;which demonstrate how tags can be used. First, a database-driven web store is&lt;br/&gt;developed where users can buy goods (cosmetic products in our case). In the second&lt;br/&gt;case study, the cosmetics web store is converted into an EJB-based application&lt;br/&gt;that is accessed through WAP devices. By following these two cases, you should&lt;br/&gt;experience hands-on what tags can do for you.&lt;br/&gt;Part V Design Chapter 15 rounds out the book by presenting a set of recommendations&lt;br/&gt;for designing, developing, and testing tag libraries. It is very easy to write a&lt;br/&gt;tag or two that executes well in a single container–it is harder to develop libraries&lt;br/&gt;that run on all containers and perform a significant task. In chapter 15 we provide&lt;br/&gt;tips for developing complex tag libraries.&lt;br/&gt;Appendices The last section of the book consists of three appendices that&lt;br/&gt;introduce the reader to the Extensible Markup Language (XML) which is used&lt;br/&gt;throughout the book in the deployment descriptors, describe the exact syntax of&lt;br/&gt;the tag library descriptor, and provide guidelines for using the listings.</description><pubDate>2008-09-22 15:45:59</pubDate></item>
<item><title>《Java Servlet编程(第二版)》英文版</title><link>http://www.netyi.net/training/16182a64-a07b-426d-be47-40ec90bc7beb</link><description>在过去的几年里，Java servlet已经在服务器端开发领域引起了轰动。现在，随着Servlet API 2.3版的引入，服务器端的servlet将把Java Web软件开发带向更高的层次。&lt;br/&gt;为更好地生成动态网页，servlet提供了快捷、强大、灵活的开发环境。开发出来的servlet可以在服务器的进程空间里运行，并能同时处理多个请求，因此，采用servlet方案系统的性能将会比其他解决方案优秀得多。servlet可以使用各种Java API和第三方厂商提供的组件类，而这些都是Java 2企业版(J2EE)的有机组成部分。当然，最值得称道的便是servlet的平台无关性 -- 真正做到了&amp;quot;一次编写，到处运行&amp;quot;（Write once, Serve anywhere）。&lt;br/&gt;这本畅销书的第二版经过了全面的修订。对于那些servlet初学者，这本书将会向你展示如何使用servlet来创建强大的可交互的网络应用程序。它的主题包括：动态HTML网页、XML文档、WAP（无线应用协议）和多媒体信息，在介绍这些主题的同时还会介绍会话跟踪、使用JDBC高效连接数据库等技术。如果你对servlet编程有一定程度的了解，本书会向你介绍servlet的最新动态，包括Web应用程序存档文件（WAR）、配置描述符（Deployment Descriptor）、J2EE集成、均衡负载、基于角色的服务安全策略、优化的servlet协作、JSP（Java服务页面）以及其他内容生成框架。&lt;br/&gt;&amp;quot;对于Web开发者来讲，尽管第一版已经很经典了，但第二版在可读性和讲解上下了更大的功夫，因此更超过第一版。你应该反复地琢磨书中那些有深度、有意味的忠告、技巧和实例，这将使你受益匪浅。&amp;quot;&lt;br/&gt;--Danny Coward，Servlet API规范负责人&lt;br/&gt;&amp;quot;从诞生开始servlet已经走过了很长的发展历程。除了功能大大改进外，比起以往它还有许多其他重要的扩展……Jason Hunter生动讲解了这些新功能，并从一个新的视角来看待这些核心特性，也正是这些特性才使得Servlet API如此流行。而这本书也正是你在寻觅的百科全书式的参考手册和教程?quot;&lt;br/&gt;--James Duncan Davidson，Apache Tomcat和Ant的创建者&lt;br/&gt;Jason Hunter 是CollabNet公司的资深技术专家。他是负责Servlet API开发的专家组成员，并为Apache Tomcat服务器的开发做出了重要贡献。&lt;br/&gt;William Crawford 最近在位于马萨诸塞州剑桥的Invantage公司领导一个开发队伍，为制药工业开发基于Java的企业网工具。&lt;br/&gt;&lt;br/&gt;章节目录&lt;br/&gt;&lt;br/&gt;前言&lt;br/&gt;第一章 简介&lt;br/&gt;Web应用程序的历史&lt;br/&gt;对servlet的支持&lt;br/&gt;servlet的优势&lt;br/&gt;第二章 HTTP servlet 基础&lt;br/&gt;HTTP 基础&lt;br/&gt;Servlet API&lt;br/&gt;制作网页&lt;br/&gt;Web应用程序&lt;br/&gt;总结&lt;br/&gt;第三章 servlet的生命周期&lt;br/&gt;servlet的选择&lt;br/&gt;servlet重新载入&lt;br/&gt;init和destroy&lt;br/&gt;单线程模式&lt;br/&gt;后台处理&lt;br/&gt;启动时载入&lt;br/&gt;客户端缓存&lt;br/&gt;服务端缓存 &lt;br/&gt;第四章 获取信息 &lt;br/&gt;servlet&lt;br/&gt;服务器&lt;br/&gt;客户端&lt;br/&gt;第五章 发送HTML信息&lt;br/&gt;响应结构 &lt;br/&gt;发送自定义响应&lt;br/&gt;用持续性连接&lt;br/&gt;响应缓冲&lt;br/&gt;状态码&lt;br/&gt;HTTP 首部&lt;br/&gt;处理错误&lt;br/&gt;六种常用方法 &lt;br/&gt;第六章 发送多媒体内容&lt;br/&gt;WAP和WML&lt;br/&gt;图像&lt;br/&gt;压缩内容 &lt;br/&gt;服务器推技术&lt;br/&gt;第七章 会话跟踪&lt;br/&gt;用户鉴别&lt;br/&gt;隐藏表单字段&lt;br/&gt;URL 重写 &lt;br/&gt;持续性cookie&lt;br/&gt;会话跟踪API&lt;br/&gt;第八章 安全性&lt;br/&gt;HTTP鉴别&lt;br/&gt;基于表单鉴别&lt;br/&gt;定制鉴别&lt;br/&gt;数字鉴别 &lt;br/&gt;安全套接字层(SSL) &lt;br/&gt;第九章 数据库连接&lt;br/&gt;关系型数据库&lt;br/&gt;JDBC API&lt;br/&gt;重新使用数据库对象&lt;br/&gt;事务处理&lt;br/&gt;用户手册servlet&lt;br/&gt;高级JDBC技术 &lt;br/&gt;其他&lt;br/&gt;第十章 applet-servlet通信&lt;br/&gt;通信选择&lt;br/&gt;日期时间服务器&lt;br/&gt;聊天服务器&lt;br/&gt;第十一章 servlet协作&lt;br/&gt;共享信息&lt;br/&gt;共享控制 &lt;br/&gt;第十二章 企业级servlet和J2EE&lt;br/&gt;将负载分布&lt;br/&gt;和J2EE的结合&lt;br/&gt;第十三章 国际化&lt;br/&gt;西欧语言 &lt;br/&gt;符合本地定义&lt;br/&gt;非西欧语言&lt;br/&gt;多语言&lt;br/&gt;动态语言协商&lt;br/&gt;HTML 表单&lt;br/&gt;第十四章 Tea框架&lt;br/&gt;Tea语言 &lt;br/&gt;开始 &lt;br/&gt;请求信息&lt;br/&gt;Tea语言管理&lt;br/&gt;Tea应用程序 &lt;br/&gt;工具应用程序&lt;br/&gt;结束语&lt;br/&gt;第十五章 WebMacro&lt;br/&gt;WebMacro框架&lt;br/&gt;安装WebMacro&lt;br/&gt;WebMacro命令&lt;br/&gt;WebMacro模板 &lt;br/&gt;一个工具应用程序&lt;br/&gt;过滤器&lt;br/&gt;第十六章 ECS&lt;br/&gt;把页面组件当作对象&lt;br/&gt;显示结果集&lt;br/&gt;第十七章 XMLC7&lt;br/&gt;简单的XML编译 8&lt;br/&gt;处理（Manipulation）类&lt;br/&gt;工具应用程序&lt;br/&gt;第十八章 JSP&lt;br/&gt;使用JSP8&lt;br/&gt;幕后的运行机制&lt;br/&gt;表达式和声明&lt;br/&gt;命令&lt;br/&gt;JSP和JavaBean&lt;br/&gt;包含和转向&lt;br/&gt;工具应用程序&lt;br/&gt;定制标签库&lt;br/&gt;第十九章 其他&lt;br/&gt;分析参数&lt;br/&gt;发送电子邮件&lt;br/&gt;使用正则表达式&lt;br/&gt;执行程序&lt;br/&gt;使用本地方法&lt;br/&gt;实现RMI客户端&lt;br/&gt;调试&lt;br/&gt;性能优化&lt;br/&gt;第二十章 Servlet API 2.3的新变化&lt;br/&gt;Servlet API 2.3的变化&lt;br/&gt;结束语&lt;br/&gt;附录一 Servlet API 快速参考&lt;br/&gt;附录二 HTTP Servlet API快速参考 &lt;br/&gt;附录三 配置描述符DTD参考 &lt;br/&gt;附录四 HTTP 状态码 &lt;br/&gt;附录五 字符实体 &lt;br/&gt;附录六 映射字符集 &lt;br/&gt;词汇表 &lt;br/&gt;</description><pubDate>2008-09-22 00:15:23</pubDate></item>
<item><title>ajax随书源码2到22章</title><link>http://www.netyi.net/training/824930e4-e7ed-4903-b94d-87ef484918d7</link><description>1．本书14~22章所附代码的运行环境&lt;br/&gt;  JDK1.4.2 以上版本&lt;br/&gt;  数据库采用MySQL 4.1.4 以上版本&lt;br/&gt;  服务器采用Tomcat 5 以上版本&lt;br/&gt;  开发工具采用Eclipse 3.0&lt;br/&gt;2．本书所附光盘范例&lt;br/&gt;第2章&lt;br/&gt;  02/					基于Ajax的留言板示例&lt;br/&gt;第3章&lt;br/&gt;  03/3.1.3.html			JavaScript在Ajax中的作用范例&lt;br/&gt;  03/3.4.6.html			加入注释，实现九九乘法表&lt;br/&gt;  03/3.4.11.html			使用逻辑表达式范例&lt;br/&gt;&lt;br/&gt;第4章&lt;br/&gt;  04/4.1.2.html			使用if…else…处理条件不成立的情形范例&lt;br/&gt;  04/4.1.4.html			使用switch语句进行多重条件判断范例&lt;br/&gt;  04/4.1.6.html			使用do…while循环范例&lt;br/&gt;  04/4.1.9.html			continue语句：停止当前循环进入下一次循环&lt;br/&gt;  04/4.2.3.html			给函数传递参数范例&lt;br/&gt;&lt;br/&gt;第5章&lt;br/&gt;  05/5.2.2.html			从Date对象中提取信息范例&lt;br/&gt;  05/5.3.2.html			使用随机函数Math.randon()范例&lt;br/&gt;  05/5.4.4.html			使用数组的length属性范例&lt;br/&gt;  05/5.6.4.html			文档操作初步范例：document对象&lt;br/&gt;  05/5.10.2.html			使用复选框范例&lt;br/&gt;  05/5.11.12.html			下拉框实例：二级联动的下拉列表菜单&lt;br/&gt;&lt;br/&gt;第6章&lt;br/&gt;  06/6.1.3.html			使用方括号（[]）引用对象的属性和方法范例&lt;br/&gt;  06/6.1.5.html			使用大括号（{}）语法创建无类型对象范例&lt;br/&gt;  06/6.1.6.html			prototype原型对象范例&lt;br/&gt;  06/6.2.6.html			函数的apply、call方法和length属性范例&lt;br/&gt;  06/6.2.7.html			深入认识JavaScript中的this指针范例&lt;br/&gt;  06/6.3.2.html			使用prototype对象定义类成员范例&lt;br/&gt;  06/6.4.2.html			实现类的私有成员范例&lt;br/&gt;  06/6.6.1.html			利用共享prototype实现继承范例&lt;br/&gt;  06/6.6.2.html			利用反射机制和prototype实现继承范例&lt;br/&gt;  06/6.6.3.html			prototype-1.3.1框架中的类继承实现机制范例&lt;br/&gt;  06/6.7.2.html			在JavaScript实现抽象类范例&lt;br/&gt;  06/6.8.3.html			给事件处理程序传递参数范例&lt;br/&gt;  06/6.8.4.html			使自定义事件支持多绑定范例&lt;br/&gt;  06/6.9/				实例：使用面向对象思想处理cookie&lt;br/&gt;&lt;br/&gt;第7章&lt;br/&gt;  07/7.2.3.html			获取cookie的值范例&lt;br/&gt;  07/7.2.4.html			给cookie设置终止日期范例&lt;br/&gt;  07/7.2.5.html			删除cookie范例&lt;br/&gt;  07/7.2.8.html			综合示例：构造通用的cookie处理函数&lt;br/&gt;  07/7.4.2.html			使用定时器实现JavaScript的延期执行或重复执行范例&lt;br/&gt;  07/7.4.3.html			给定时器调用传递参数范例&lt;br/&gt;  07/7.5.3.html			使用throw语句抛出异常范例&lt;br/&gt;&lt;br/&gt;第8章&lt;br/&gt;  08/8.2.7.html			使用responseText获得返回的文本范例&lt;br/&gt;  08/8.2.8.html			使用responseXML属性获取范例&lt;br/&gt;  08/8.2.9.html			使用abort方法取消一个请求范例&lt;br/&gt;  08/8.3.2.html			使用post方法向服务器提交数据范例&lt;br/&gt;  08/8.3.3.html			实现服务器相关的二级联动菜单范例&lt;br/&gt;  08/a.html				用于ajax获取文件的示例&lt;br/&gt;  08/checkUserName.asp	检测用户名的代码文件&lt;br/&gt;&lt;br/&gt;第9章&lt;br/&gt;  09/9.3.1.html			直接引用结点范例&lt;br/&gt;  09/9.5.1.html			表格操作范例&lt;br/&gt;  09/9.5.5.html			添加单元格范例&lt;br/&gt;  09/9.5.8.html			删除行和单元格范例&lt;br/&gt;  09/9.5.9.html			交换两行的位置范例&lt;br/&gt;&lt;br/&gt;第10章&lt;br/&gt;  10/10.1.3.html			CSS在Ajax开发中的作用&lt;br/&gt;  10/10.2.4.html			使用id选择器范例&lt;br/&gt;  10/10.2.7.html			样式应用就近原则范例&lt;br/&gt;  10/10.3.1.html			通过style对象改变结点的CSS范例&lt;br/&gt;  10/10.4.2.html			使用界面滤镜范例&lt;br/&gt;  10/10.4.3.html			静态滤镜范例&lt;br/&gt;  10/10.4.4.html			动态滤镜范例&lt;br/&gt;  10/10.4.5.html			使用JavaScript控制CSS滤镜范例&lt;br/&gt;&lt;br/&gt;第11章&lt;br/&gt;  11/json.cs				用于实现json的服务器端代码&lt;br/&gt;&lt;br/&gt;第12章&lt;br/&gt;  12/ajax.aspx			总线模型的页面文件&lt;br/&gt;  12/ajax.aspx.cs			总线模型的代码文件&lt;br/&gt;  12/12.3/				示例：实现Ajax翻页效果&lt;br/&gt;&lt;br/&gt;第13章&lt;br/&gt;  13/13.1.5.html			DOM中事件顺序模型的不同范例&lt;br/&gt;  13/13.1.6.html			CSS中使用!important提高属性优先级范例&lt;br/&gt;  13/13.2.2.html			利用URL存储状态信息&lt;br/&gt;  13/13.2.3.html			利用Hash参数解决刷新问题&lt;br/&gt;  13/13.2.4.html			解决浏览器的【前进】【后退】按钮失效问题&lt;br/&gt;  13/13.4.1.html			服务器端始终要作有效性验证&lt;br/&gt;  13/13.4.2.html			避免拒绝服务攻击（DoS攻击）&lt;br/&gt;  13/13.5.2.html			因浏览器而异的字符串连接操作性能差异范例&lt;br/&gt;  13/13.5.3.html			按需载入JavaScript代码范例&lt;br/&gt;  13/hello.js				用于动态载入的js文件&lt;br/&gt;  13/History.html			用于修复浏览器【前进】【后退】问题的空白文件&lt;br/&gt;&lt;br/&gt;第14章&lt;br/&gt;  程序描述：本章程序将使用Ajax技术实现动态获取数据的树状菜单。当展开菜单时，自动向服务器发送请求，查询该菜单下的子菜单，并在客户端显示子菜单，而无需刷新整个页面。&lt;br/&gt;  源码结构说明&lt;br/&gt;1.TreeWiewDemo文件夹下为源文件&lt;br/&gt;2.TreeWiewDemo.war为部署文件&lt;br/&gt;&lt;br/&gt;第15章&lt;br/&gt;  程序描述：本章程序将本章将使用Ajax技术实现无刷新即可浏览RSS新闻的阅读器。&lt;br/&gt;  源码结构说明&lt;br/&gt;1.RSSReader文件夹下为源文件&lt;br/&gt;2.RSSReader.war为部署文件&lt;br/&gt;&lt;br/&gt;第16章&lt;br/&gt;  程序描述：本章仿照Google Suggest使用Ajax技术实现动态获取搜索提示的功能。当输入搜索关键字时，自动向服务器发送请求，查询相关的关键字，并及时提示用户可输入的关键字。&lt;br/&gt;  源码结构说明&lt;br/&gt;1.Suggest文件夹下为源文件&lt;br/&gt;2.Suggest.war为部署文件&lt;br/&gt;&lt;br/&gt;第17章&lt;br/&gt;  程序描述：本章将使用Ajax技术实现无刷新即可浏览图片的相册。当浏览图片时，自动向服务器发送请求，查询该类别下的照片，并显示到客户端。用户也可以根据喜好随时改变相册的风格。浏览相册的整个过程无需刷新页面。&lt;br/&gt;  源码结构说明&lt;br/&gt;1.AlbumShow文件夹下为源文件&lt;br/&gt;2.AlbumShow.war为部署文件&lt;br/&gt;&lt;br/&gt;第18章&lt;br/&gt;  程序描述：本章将使用Ajax技术实现聊天室程序。使用Ajax来动态获取聊天记录，可以避免屏幕不断刷新而出现的闪动现象，另外，使用Ajax也可以减少服务器端的负荷，对这种客户端与服务器端通信量极大的程序是非常有意义的。对用户来讲，极大的提高了用户体验&lt;br/&gt;  源码结构说明。&lt;br/&gt;1.Chat文件夹下为源文件&lt;br/&gt;2.Chat.war为部署文件&lt;br/&gt;&lt;br/&gt;第19章&lt;br/&gt;  程序描述：本章将使用拖拽方式实现定制个性化主页程序。通过拖拽的方式进行布局设计，在很大程度上提高了用户的可视化操作，真正实现了所见即所得。在完成拖拽后，无须刷新页面，即可保存布局。&lt;br/&gt;  源码结构说明&lt;br/&gt;1.AjaxDemo文件夹下为源文件&lt;br/&gt;2.AjaxDemo.war为部署文件&lt;br/&gt;&lt;br/&gt;第20章&lt;br/&gt;  程序描述：本章将实现上传文件时显示进度条的功能。当上传文件时，客户端同时显示文件上传的进度，从而及时了解文件传送情况。&lt;br/&gt;  源码结构说明&lt;br/&gt;1.FileUpload文件夹下为源文件&lt;br/&gt;2.FileUpload.war为部署文件&lt;br/&gt;&lt;br/&gt;第21章&lt;br/&gt;  程序描述：本章将实现通过滑块来显示分页数据的功能。在传统的分页方式中，大多数是通过单击按钮的方式来显示分页的。利用Ajax可以通过使用滑块的滑动来选择所显示的分页，这种拖拽的方式极大提高了用户体验。&lt;br/&gt;  源码结构说明&lt;br/&gt;1.Slider文件夹下为源文件&lt;br/&gt;2.Slider.war为部署文件&lt;br/&gt;&lt;br/&gt;第22章&lt;br/&gt;  程序描述：使用Windows系统的用户在关机的时候，出现的界面只允许用户选择关机、注销或取消动作，而桌面上的程序都不能使用，并且屏幕呈现灰色状态。本章将实现如何在网页中windows关机效果&lt;br/&gt;  源码结构说明&lt;br/&gt;1.LightBox文件夹下为源文件&lt;br/&gt;2.LightBox.war为部署文件&lt;br/&gt;</description><pubDate>2008-09-10 15:50:33</pubDate></item>
<item><title>BeginningJSP2n2p</title><link>http://www.netyi.net/training/0d391452-8c64-44ed-91a6-14ceb596672d</link><description>Table of Contents  &lt;br/&gt; Beginning JSP 2—From Novice to Professional  &lt;br/&gt; Introduction &lt;br/&gt; Chapter 1 - Creating Your First JSP Page &lt;br/&gt; Chapter 2 - Learning How HTML Works &lt;br/&gt; Chapter 3 - Introducing JSP &lt;br/&gt; Chapter 4 - Working with Data &lt;br/&gt; Chapter 5 - Making Decisions, Decisions &lt;br/&gt; Chapter 6 - Reusing Code &lt;br/&gt; Chapter 7 - Performing Time Management &lt;br/&gt; Chapter 8 - Using JSP and XML Together &lt;br/&gt; Chapter 9 - Going Behind the Scenes &lt;br/&gt; Chapter 10 - Implementing the Model 2 Architecture and Using Struts &lt;br/&gt; Appendix A - JSP Syntax Reference &lt;br/&gt; Appendix B - JSP Implicit Objects &lt;br/&gt; Appendix C - XML Configuration Files &lt;br/&gt; Appendix D - Getting More Information &lt;br/&gt; Index  &lt;br/&gt; List of Figures  &lt;br/&gt; List of Tables  &lt;br/&gt; List of Trying It Outs  &lt;br/&gt; List of Sidebars  &lt;br/&gt;</description><pubDate>2008-07-24 13:44:46</pubDate></item>
<item><title>网上书城电子商务-全套毕业设计</title><link>http://www.netyi.net/training/374c3625-407f-47ba-919c-fcb6f451f423</link><description>第一章  序 言&lt;br/&gt;1.1本次毕业设计的意义……………………………………………………5&lt;br/&gt;1.1.1学习和掌握电子商务网站的整体运作过程………………………5&lt;br/&gt;1.1.2“软件工程试验”项目的重要意义………………………………5&lt;br/&gt;1.2我在开发过程负责的工作………………………………………………7&lt;br/&gt;第二章  网上书店开发技术的考虑和选择&lt;br/&gt;2.1设计方案的确定…………………………………………………………8&lt;br/&gt;  2.1.1目前流行的开发技术的比较………………………………………8&lt;br/&gt;  2.1.2为什么要选择JSP技术……………………………………………8&lt;br/&gt;2.2开发的软、硬件环境……………………………………………………9&lt;br/&gt;  2.2.1开发使用的技术……………………………………………………10&lt;br/&gt;  2.2.2开发的软件环境……………………………………………………10&lt;br/&gt;  2.2.3开发的硬件环境……………………………………………………10&lt;br/&gt;2.3本次开发的约束条件……………………………………………………10&lt;br/&gt;第三章  设计目标及网上书店原型的确定&lt;br/&gt;3.1设计目标的确定…………………………………………………………12&lt;br/&gt;3.2原型的需求分析…………………………………………………………12&lt;br/&gt;3.2.1相关网站的功能构架的考察………………………………………12&lt;br/&gt;3.2.2原型的功能划分……………………………………………………15&lt;br/&gt;3.4基于原型的设想功能的介绍……………………………………………16&lt;br/&gt;第四章 网上书店的框架设计&lt;br/&gt;4.1原型的业务流程的确定…………………………………………………17&lt;br/&gt;4.2网上书店原型构架的详细介绍…………………………………………17&lt;br/&gt;4.2.1原型中主要模块的构成……………………………………………17&lt;br/&gt;4.2.2原型模块的DFD图…………………………………………………18&lt;br/&gt;第五章  原型开发及其具体设计&lt;br/&gt;5.1模块的调用关系及各模块中包含文件…………………………………21&lt;br/&gt;  5.1.1模块的调用关系……………………………………………………21&lt;br/&gt;  5.1.2模块中包含的文件…………………………………………………21&lt;br/&gt;5.2原型的数据库的设计，E-R图…………………………………………23&lt;br/&gt;5.3设计和实现的过程中所用表达工具……………………………………23&lt;br/&gt;  5.3.1VISIO…………………………………………………………………23&lt;br/&gt;  5.3.2文本编辑工具………………………………………………………23&lt;br/&gt;5.4部分代码的编写…………………………………………………………25&lt;br/&gt;第六章  网上书店项目开发过程中的问题小议&lt;br/&gt;6.1开发过程中遇到的困难和解决…………………………………………26&lt;br/&gt;  6.1.1服务器的选择………………………………………………………26&lt;br/&gt;  6.1.2中文问题的解决……………………………………………………26&lt;br/&gt;6.2如何在机器上安装服务器并使用………………………………………27&lt;br/&gt;6.3 使用JavaBean和使用jsp的不同及其转换…………………………29&lt;br/&gt;第七章  结束语…………………………………………………………………33&lt;br/&gt;</description><pubDate>2008-06-17 17:03:53</pubDate></item>
<item><title>《深入浅出Servlets and JSP第二版》</title><link>http://www.netyi.net/training/84cd2f02-1dbd-400d-99c5-e1eccda015b7</link><description>中文名称：深入浅出 Servlets and JSP &lt;br/&gt;英文名称：Head First Javascript&lt;br/&gt;版本：高清晰PDF（非扫描）&lt;br/&gt;发行时间：2008年&lt;br/&gt;地区：美国&lt;br/&gt;语言：英语&lt;br/&gt;O'Reilly Media, Inc. | 2008-01-11 | ISBN: 0596527748 | 650页 | PDF | &lt;br/&gt;&lt;br/&gt;OReilly.Head.First.Servlets.and.JSP.2nd.Edition.Mar.2008.eBook-BBL&lt;br/&gt;书名：Head First Servlets and JSP: Passing the Sun Certified Web Component Developer Exam &lt;br/&gt;作者： Bryan Basham, Kathy Sierra, Bert Bates&lt;br/&gt;出版商：O'Reilly Media, Inc.&lt;br/&gt;发行日期： 2008 年 3 月 25 日，第2版。&lt;br/&gt;语言：英语&lt;br/&gt;ISBN-10/ISBN-13：0596516681 / 978-0596516680 &lt;br/&gt;&lt;br/&gt;《Head first Servlets and JSP 》 著名的head first系列图书之一 英文pdf版 &lt;br/&gt;&lt;br/&gt;迄今为止(2008.5.31)Head first 系列第一本非扫描电子版！！！给你非一般的阅读体验！！&lt;br/&gt;&lt;br/&gt;非扫描，体积小，超清晰，效果好。&lt;br/&gt;&lt;br/&gt;【内容简介】&lt;br/&gt;现在是你学习较新版本（J2EE1.4）Servlets和JSP的时候了，本书会为你的学习加速。你将会熟练掌握Servlets和JSP，并顺利通过Sun的Web组件开发人员认证（SCWCD）1.4考试。也许你并不在意考试，但会在下一个项目中运用Servlets和JSP。你在为按时完成项目而努力，已为此而导致咖啡因摄入过量，所以你不能再为一本只有专家才能理解而且让人昏昏入睡的书而浪费时间了。 &lt;br/&gt;没问题。《深入浅出Servlets &amp;amp;amp; JSP》绝对不会令你昏昏入睡，它会将知识直接灌入你的大脑。你会通过不寻常的方式同Servlet和JSP打交道，学得更深入、更快，而且最重要的是，你能真正地学以致用。你可以看看为什么那么多评论者说这本书让他们&amp;quot;手不释卷&amp;quot;。我们不会为了通过考试而让你昏昏入睡，更不会让你第二天就忘了所学的一切。 &lt;br/&gt;你会了解到怎么写Servlet和JSP，容器的哪些方面很受推崇，以及哪些方面让它倍受责难，如何使用JSP表达式语言，JSP里哪些不该写，怎么编写部署描述文件，如何编写安全的应用，以及如何使用一些服务器端设计模式。你不只是能通过考试而已，你将实实在在掌握这些内容，真正地将其加以应用。 &lt;br/&gt;SCWCD,这种新的认证非常严格，难度大大超过它以前的版本。这一点我们很清楚，因为它就是我们编写的（不要误解了，我们可不是想把题目出得难些来让你买我们的书，这不是我们的本意）。我们只想用一种更有趣的方式让你更愉快地通过考试。（已经有数千人利用《深入浅出 EJB》成功通过了SCBCD考试，如果你是其中之一，应该知道这本书能带给你怎样的惊喜！） &lt;br/&gt;Brayn Basham，Kathy Sierra（javaRanch.com的创始人）和Bert Bates是多个Sun Java认证考试的开发人员，包括J2EE 1.4 SCWCD，他们已经用深入浅出（Head First）的概念对数以千计的程序员进行了Java技术培训。 &lt;br/&gt;&lt;br/&gt;“这是快速、有趣和迷人的，记住了——你可以真正学到一些东西。”&lt;br/&gt;——Ken Arnold，The Java Programming Language 作者之一&lt;br/&gt;&lt;br/&gt;“...现在绝对是投入Head First怀抱的时刻了。”&lt;br/&gt;——Scott McNealy, Sun Microsystems主席，CEO&lt;br/&gt;&lt;br/&gt;“我为Servlet/JSP课程买了十本以上的书，但没有一本真正符合我的教学需求...直到我发现了现在在你手中的教学宝典。Head First系列书籍使我们轻松地教学，并且教得更棒。”&lt;br/&gt;——Philippe Maquet，布鲁塞尔Loop Factory资深教师 &lt;br/&gt;&lt;br/&gt;</description><pubDate>2008-06-02 20:42:32</pubDate></item>
<item><title>Core Servlets and JavaServer Pages, Volume 2: Advanced Technologies, Second Edition(核心Servlets和JS</title><link>http://www.netyi.net/training/12240fe9-e1b5-45d9-b5bd-e93af5b1a1a4</link><description>Core Servlets and JavaServer Pages, Volume 2: Advanced Technologies, Second Edition &lt;br/&gt;by Marty Hall; Larry Brown; Yaakov Chaikin &lt;br/&gt;&lt;br/&gt;--------------------------------------------------------------------------------&lt;br/&gt; &lt;br/&gt;Publisher: Prentice Hall &lt;br/&gt;Pub Date: December 27, 2007 &lt;br/&gt;Print ISBN-10: 0-13-148260-2 &lt;br/&gt;Print ISBN-13: 978-0-13-148260-9 &lt;br/&gt; &lt;br/&gt;Pages: 736 &lt;br/&gt;  &lt;br/&gt; &lt;br/&gt; Table of Contents| Index  &lt;br/&gt;&lt;br/&gt;Overview&lt;br/&gt;Java EE is the technology of choice for e-commerce applications, interactive Web sites, and Web-enabled services. Servlet and JSP technology provides the link between Web clients and server-side applications on this platform. Core Servlets and JavaServer Pages, Volume 2: Advanced Technologies, Second Edition, is the definitive guide to the advanced features and capabilities provided by servlets and JSP.&lt;br/&gt;&lt;br/&gt;Volume 2 presents advanced capabilities like custom tag libraries, filters, declarative security, JSTL, and Struts. Like the first volume, it teaches state-of-the-art techniques and best practices illustrated with complete, working, fully documented programs.&lt;br/&gt;&lt;br/&gt;Volume 2 explains in detail the advanced tools and techniques needed to build robust, enterprise-class applications. You'll learn how to control application behavior through the web.xml deployment descriptor file, how to enhance application security through both declarative and programmatic methods, and how to use servlet and JSP filters to encapsulate common behavior. You'll also learn how to control major application lifecycle events, best practices for using JSTL, and how to build custom tag libraries. Volume 2 concludes with an in-depth introduction to the Jakarta Struts framework.&lt;br/&gt;&lt;br/&gt;Complete source code for all examples is available free for unrestricted use at www.volume2.coreservlets.com. For information on Java training from Marty Hall, go to courses.coreservlets.com.&lt;br/&gt;&lt;br/&gt;Volume 1 presents comprehensive coverage of the servlets and JSP specifications, including HTTP headers, cookies, session tracking, JSP scripting elements, file inclusion, the MVC architecture, and the JSP expression language. It also covers HTML forms, JDBC, and best practices for design and implementation.&lt;br/&gt;</description><pubDate>2008-04-18 18:07:41</pubDate></item>
<item><title>Core Servlets and JavaServer Pages, Volume 2: Advanced Technologies, Second Edition</title><link>http://www.netyi.net/training/f4dd72a4-ea91-4832-b9a0-9bba3ec16be0</link><description>Java EE is the technology of choice for e-commerce applications, interactive Web sites, and Web-enabled services. Servlet and JSP technology provides the link between Web clients and server-side applications on this platform. Core Servlets and JavaServer Pages, Volume 2: Advanced Technologies, Second Edition, is the definitive guide to the advanced features and capabilities provided by servlets and JSP.&lt;br/&gt;&lt;br/&gt;Volume 2 presents advanced capabilities like custom tag libraries, filters, declarative security, JSTL, and Struts. Like the first volume, it teaches state-of-the-art techniques and best practices illustrated with complete, working, fully documented programs.&lt;br/&gt;&lt;br/&gt;Volume 2 explains in detail the advanced tools and techniques needed to build robust, enterprise-class applications. You'll learn how to control application behavior through the web.xml deployment descriptor file, how to enhance application security through both declarative and programmatic methods, and how to use servlet and JSP filters to encapsulate common behavior. You'll also learn how to control major application lifecycle events, best practices for using JSTL, and how to build custom tag libraries. Volume 2 concludes with an in-depth introduction to the Jakarta Struts framework.&lt;br/&gt;&lt;br/&gt;Complete source code for all examples is available free for unrestricted use at www.volume2.coreservlets.com. For information on Java training from Marty Hall, go to courses.coreservlets.com.&lt;br/&gt;&lt;br/&gt;Volume 1 presents comprehensive coverage of the servlets and JSP specifications, including HTTP headers, cookies, session tracking, JSP scripting elements, file inclusion, the MVC architecture, and the JSP expression language. It also covers HTML forms, JDBC, and best practices for design and implementation.&lt;br/&gt;</description><pubDate>2008-04-09 12:32:47</pubDate></item>
<item><title>Head First JavaScript</title><link>http://www.netyi.net/training/4831b53c-e3d5-41f6-88ed-762d6ddc5c05</link><description>         &lt;br/&gt;Head First JavaScript&lt;br/&gt; &lt;br/&gt;So you're ready to make the leap from writing HTML and CSS web pages to creating dynamic web applications. You want to take your web skills to the next level. And you're finally ready to add &amp;quot;programmer&amp;quot; to the resume. It sounds like you're ready to learn the Web's hottest programming language: JavaScript. Head First JavaScript is your ticket to going beyond copying and pasting the code from someone else's web site, and writing your own interactive web pages.&lt;br/&gt;&lt;br/&gt;With Head First JavaScript, you learn:&lt;br/&gt;— The basics of programming, from variables to types to looping &lt;br/&gt;— How the web browser runs your code, and how you can talk to the browser with your code &lt;br/&gt;— Why you'll never have to worry about casting, overloading, or polymorphism when you're writing JavaScript code&lt;br/&gt;— How to use the Document Object Model to change your web pages without making your users click buttons &lt;br/&gt;&lt;br/&gt;If you've ever read a Head First book, you know what to expect—a visually rich format designed for the way your brain works. Head First JavaScript is no exception. It starts where HTML and CSS leave off, and takes you through your first program into more complex programming concepts—like working directly with the web browser's object model and writing code that works on all modern browsers.&lt;br/&gt;&lt;br/&gt;Don't be intimidated if you've never written a line of code before! In typical Head First style, Head First JavaScript doesn't skip steps, and we're not interested in having you cut and paste code. You'll learn JavaScript, understand it, and have a blast along the way. So get ready... dynamic and exciting web pages are just pages away.&lt;br/&gt;</description><pubDate>2008-04-09 09:04:57</pubDate></item>
<item><title>Head First Servlets and JSP 第二版 (清晰扫描版)</title><link>http://www.netyi.net/training/19c081bd-a7ea-4c7a-a3d5-228e9c0731cc</link><description>Head First Servlets and JSP 第二版，2008年3月刚刚上市，AMAZON四星半评价。&lt;br/&gt;&lt;br/&gt;Looking to study up for the new J2EE 1.5 Sun Certified Web Component Developer (SCWCD) exam? &lt;br/&gt;&lt;br/&gt;This book will get you way up to speed on the technology you'll know it so well, in fact, that you can pass the brand new J2EE 1.5 exam. If that's what you want to do, that is. Maybe you don't care about the exam, but need to use servlets and JSPs in your next project. You're working on a deadline. You're over the legal limit for caffeine. You can't waste your time with a book that makes sense only AFTER you're an expert (or worse, one that puts you to sleep).&lt;br/&gt;&lt;br/&gt;Learn how to write servlets and JSPs, what makes a web container tick (and what ticks it off), how to use JSP's Expression Language (EL for short), and how to write deployment descriptors for your web applications. Master the c:out tag, and get a handle on exactly what's changed since the older J2EE 1.4 exam. You don't just pass the new J2EE 1.5 SCWCD exam, you'll understand this stuff and put it to work immediately.&lt;br/&gt;&lt;br/&gt;Head First Servlets and JSP doesn't just give you a bunch of facts to memorize; it drives knowledge straight into your brain. You'll interact with servlets and JSPs in ways that help you learn quickly and deeply. And when you're through with the book, you can take a brand-new mock exam, created specifically to simulate the real test-taking experience.&lt;br/&gt;&lt;br/&gt;目录：&lt;br/&gt;1 Why use Servlets &amp;amp;amp; JSPs: an introduction 1&lt;br/&gt;2 Web App Architecture: high-level overview 37&lt;br/&gt;3 Mini MVC Tutorial: hands-on MVC 67&lt;br/&gt;4 Being a Servlet: request AND response 93&lt;br/&gt;5 Being a Web App: attributes and listeners 147&lt;br/&gt;6 Conversational state: session management 223&lt;br/&gt;7 Being a JSP: using JSP 281&lt;br/&gt;8 Script-free pages: scriptless JSP 343&lt;br/&gt;9 Custom tags are powerful: using JSTL 439&lt;br/&gt;10 When even JSTL is not enough: custom tag development 499&lt;br/&gt;11 Deploying your web app: web app deployment 601&lt;br/&gt;12 Keep it secret, keep it safe: web app security 649&lt;br/&gt;13 The Power of Filters: wrappers and filters 701&lt;br/&gt;14 Enterprise design patterns: patterns and struts 737&lt;br/&gt;A Appendix A: Final Mock Exam 791&lt;br/&gt;i Index 865</description><pubDate>2008-04-08 10:37:13</pubDate></item>
<item><title>JSP 2.0技术教程</title><link>http://www.netyi.net/training/f57c318e-a91e-4010-b51b-a103b61ecf98</link><description>本书图文并茂，以丰富的实例为引导，全面介绍了主流的Java Web开发技术——JSP 2.0，重点介绍Java在展示层的两项重要技术：Java Servlet JavaServer Pages。它们是最重要的Java核心技术。对这两项技术的深入了解，将有助于您未来对于JavaServer Faces(JSF)技术Java Web Services技术的学习。&lt;br/&gt;本书分为三大部分，前三章为基本概念部分，帮助读者奠定相关的概念基础；第四章至第十一章为JSP 2.0的基础内容，这两部分内容会让入门的读者对JSP2.0技术有比较全面和系统的认识。第十二章至第十八章为提高部分，介绍了SQL、JSP与JDBC的概念与应用；JavaMail的使用；web应用程序设计师应有的设计理念和实现方式等内容，这是为有一定理论和实践经验的读者准备的，可以适应他们提高水平的需要。&lt;br/&gt;</description><pubDate>2008-04-02 00:16:12</pubDate></item>
<item><title>javascript权威指南第五版</title><link>http://www.netyi.net/training/0ebac8f3-0f8a-4cad-9bb4-8dab15291027</link><description> &lt;br/&gt;This Fifth Edition is completely revised and expanded to cover JavaScript as it is used in today's Web 2.0 applications. This book is both an example-driven programmer's guide and a keep-on-your-desk reference, with new chapters that explain everything you need to know to get the most out of JavaScript, including:&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;Scripted HTTP and Ajax&lt;br/&gt;&lt;br/&gt;XML processing&lt;br/&gt;&lt;br/&gt;Client-side graphics using the &amp;amp;lt;canvas&amp;amp;gt; tag&lt;br/&gt;&lt;br/&gt;Namespaces in JavaScript--essential when writing complex programs&lt;br/&gt;&lt;br/&gt;Classes, closures, persistence, Flash, and JavaScript embedded in Java applications&lt;br/&gt; &lt;br/&gt;</description><pubDate>2008-03-16 14:12:05</pubDate></item>
<item><title>JavaServer Pages开发指南</title><link>http://www.netyi.net/training/77fc11b7-1f5c-4967-b9a5-f0dd9ae0c643</link><description>【内容简介】&lt;br/&gt;　　本收由浅入深、全面、系统地介绍了JavaServer Pages技术。全书共分四个部分，第I部分介绍基本JSP脚本。第II部分讲述JavaBeans及其应用，包括JSP编程概念。第III部分为使用数据库和JavaServer Pages，介绍使用Java代码来更新和查询数据库的技术。第IV部分为高级议题，描述了一个完整的Web应用的配置，以及创建定制的JSP标记的方法。本书概念清晰、语言简洁、可读性极强，适合于使用JavaServer Pages技术开发站的初学者及专业人士学习参考。&lt;br/&gt;【下载说明】&lt;br/&gt;　　《JavaServer Pages开发指南》是美国著名的“高级开发工具从书”系列之一，该书系统、全面地介绍了JavaServer Pages技术，从浅入深，语言通顺，概念清晰，可读性极强。本书的作者具有丰富的实践经验，全书内容贯穿了作者的经验和体会。因此对希望了解JSP技术的人员以及希望使用此技术开发站点的初学者和有一定站点开发经验的人来说，本书都是一本非常好的参考书籍。本资料为《JavaServer Pages开发指南》一书的PDF高清晰电子版，可用Adobe Reader7.0或兼容阅读工具打开，强烈推荐JSP爱好者下载！&lt;br/&gt;【图书目录】&lt;br/&gt;前言&lt;br/&gt;第Ⅰ部分 基本JSP脚本&lt;br/&gt;第1章 第一个JavaServer Page&lt;br/&gt;1.1 对Web需要知道些什么&lt;br/&gt;1.1.1 Web开发者的观点&lt;br/&gt;1.1.2 Web页面&lt;br/&gt;1.1.3 技术的发展&lt;br/&gt;1.2 JavaServer Pages怎样工作&lt;br/&gt;1.3 JavaServer Pages的基本构建块&lt;br/&gt;1.3.1 声明&lt;br/&gt;1.3.2 表达式&lt;br/&gt;1.3.3 Java方法：使用声明和表达式&lt;br/&gt;1.3.4 小脚本&lt;br/&gt;1.4 如何测试JSP文档&lt;br/&gt;1.5 关于测试JSP文档的更多信息&lt;br/&gt;1.5.1 找到一个远程服务器&lt;br/&gt;1.5.2 理解服务器的目录结构&lt;br/&gt;1.6 例子：一个旋转横幅的广告&lt;br/&gt;1.7 JSP的注释标记&lt;br/&gt;1.8 小结&lt;br/&gt;第2章 使用JSP脚本元素&lt;br/&gt;2.1 作用域和生存期概念&lt;br/&gt;2.1.1 类范围的名字和局限于方法的名字&lt;br/&gt;2.1.2 局限于方法的名字可以隐藏类范围的名字&lt;br/&gt;2.2 小脚本与声明&lt;br/&gt;2.2.1 JSP与Servlet&lt;br/&gt;2.3 在声明和小脚本中变量的作用域&lt;br/&gt;2.4 在声明和小脚本中变量的生存期&lt;br/&gt;2.5 作用域、生存期和方法调用&lt;br/&gt;2.5.1 发生了什么&lt;br/&gt;2.5.2 参数传递&lt;br/&gt;2.5.3 一个方法如何打印部分响应内容&lt;br/&gt;2.6 小结&lt;br/&gt;第3章 隐式对象&lt;br/&gt;3.1 Java中的类、对象和方法&lt;br/&gt;3.2 混合JSP标记、HTML标记和Java语句&lt;br/&gt;3.3 JSP中的隐式对象&lt;br/&gt;3.3.1 请求对象&lt;br/&gt;3.3.2 方法、远程地址和远程主机&lt;br/&gt;3.3.3 地区和语言&lt;br/&gt;3.3.4 表单和请求参数&lt;br/&gt;3.3.5 响应对象&lt;br/&gt;3.3.6 隐式输出对象&lt;br/&gt;3.3.7 HTTP会话&lt;br/&gt;3.3.8 session对象&lt;br/&gt;3.3.9 application对象&lt;br/&gt;3.3.10 config对象&lt;br/&gt;3.3.11 page对象&lt;br/&gt;3.3.12 pageContext对象&lt;br/&gt;3.3.13 exception对象&lt;br/&gt;3.4 小结&lt;br/&gt;第4章 JSP指令&lt;br/&gt;4.1 什么是指令&lt;br/&gt;4.2 include指令&lt;br/&gt;4.2.1 嵌套include指令&lt;br/&gt;4.2.2 修改包含文件&lt;br/&gt;4.2.3 一些其他的缺陷&lt;br/&gt;4.3 page指令&lt;br/&gt;4.3.1 import属性&lt;br/&gt;4.3.2 errorPage和isErrorPage属性&lt;br/&gt;4.3.3 session属性&lt;br/&gt;4.3.4 info属性&lt;br/&gt;4.3.5 language属性&lt;br/&gt;4.3.6 contentType属性&lt;br/&gt;4.3.7 isThreadSafe属性&lt;br/&gt;4.3.8 buffer属性&lt;br/&gt;4.3.9 autoFlush属性&lt;br/&gt;4.3.10 extends属性&lt;br/&gt;4.4 使用page指令的一个例子&lt;br/&gt;4.4.1 jspInit和jspDestroy方法&lt;br/&gt;4.5 tablib指令&lt;br/&gt;4.6 小结&lt;br/&gt;第5章 从Servlet中可学到什么&lt;br/&gt;5.1 Servlet&lt;br/&gt;5.1.1 一个更有趣的Servlet&lt;br/&gt;5.2 一个JSP变成一个Servlet&lt;br/&gt;5.3 声明&lt;br/&gt;5.4 include指令&lt;br/&gt;5.5 从Servlet中得到调试帮助&lt;br/&gt;5.6 小结&lt;br/&gt;第6章 标准动作&lt;br/&gt;6.1 动作标记语法&lt;br/&gt;6.2 include动作&lt;br/&gt;6.3 include指令与include动作&lt;br/&gt;6.3.1 Servlet代码&lt;br/&gt;6.3.2 修改被包含的页面&lt;br/&gt;6.3.3 使变量名是可区分的&lt;br/&gt;6.3.4 Servlet和其他的动态内容&lt;br/&gt;6.3.5 JSP有效范围和include动作&lt;br/&gt;6.3.6 当流出时所发生的动作&lt;br/&gt;6.4 param动作&lt;br/&gt;6.5 forward动???&lt;br/&gt;6.6 plugin动作&lt;br/&gt;6.6.1 plugin动作的属性&lt;br/&gt;6.6.2 更多的属性&lt;br/&gt;6.6.3 plugin动作的子标记&lt;br/&gt;6.6.4 使用名字属性&lt;br/&gt;6.7 小结&lt;br/&gt;第7章 案例学习：一个简单的Web小窗口&lt;br/&gt;7.1 主页面&lt;br/&gt;7.1.1 定制的主页面&lt;br/&gt;7.1.2 帮助者文件&lt;br/&gt;7.2 定制页面&lt;br/&gt;7.2.1 包含帮助者文件&lt;br/&gt;7.2.2 客户端脚本&lt;br/&gt;7.2.3 HTML表单&lt;br/&gt;7.3 提交更改&lt;br/&gt;7.4 小结&lt;br/&gt;第Ⅱ部分 JavaBeans及其应用&lt;br/&gt;第8章 使用JavaBeans&lt;br/&gt;8.1 什么是JavaBeans&lt;br/&gt;8.2 Bean的属性&lt;br/&gt;8.3 useBean动作&lt;br/&gt;8.3.1 class属性&lt;br/&gt;8.3.2 id属性&lt;br/&gt;8.3.3 Bean范围&lt;br/&gt;8.3.4 Bean范围实验&lt;br/&gt;8.3.5 其他useBean属性&lt;br/&gt;8.3.6 非空的useBean标记&lt;br/&gt;8.3.7 编译和重新编译Bean类&lt;br/&gt;8.4 setProperty和getProterty动作&lt;br/&gt;8.4.1 使用来自HTML表单的值&lt;br/&gt;8.4.2 setProperty和getProterty动作的属性&lt;br/&gt;8.4.3 Indexed属性&lt;br/&gt;8.4.4 示例：用来自Bean的值填充一个表单&lt;br/&gt;8.4.5 为什么对setProperty和getProterty感到烦恼&lt;br/&gt;8.5 小结&lt;br/&gt;第9章 案例学习：Tic-Tac-Toe&lt;br/&gt;9.1 Tic-Tac-ToeWeb站点&lt;br/&gt;9.2 部分代码概览&lt;br/&gt;9.3 可以参加&lt;br/&gt;9.4 开始游戏&lt;br/&gt;9.4.1 对参加者意味着什么&lt;br/&gt;9.4.2 组成比赛&lt;br/&gt;9.4.3 一对参加者&lt;br/&gt;9.4.4 负荷&lt;br/&gt;9.4.5 login.jsp的其他元素&lt;br/&gt;9.5 棋盘&lt;br/&gt;9.6 参加游戏&lt;br/&gt;9.6.1 线程安全性&lt;br/&gt;9.6.2 实现移动&lt;br/&gt;9.6.3 工作类&lt;br/&gt;9.6.4 退出&lt;br/&gt;9.7 小结&lt;br/&gt;第Ⅲ部分 使用数据库和JavaServer Pages&lt;br/&gt;第10章 与数据库交互&lt;br/&gt;10.1 数据库和服务器&lt;br/&gt;10.2 创建一个连接&lt;br/&gt;10.3 一个简单的数据库页面&lt;br/&gt;10.3.1 更新数据库&lt;br/&gt;10.3.2 查询数据库&lt;br/&gt;10.4 当页面第一次被加载时连接&lt;br/&gt;10.5 使用JavaBeans&lt;br/&gt;10.6 使用一个可滚动的结果集&lt;br/&gt;10.7 与一个在线数据库交互&lt;br/&gt;10.8 使用数据库事务&lt;br/&gt;10.9 小结&lt;br/&gt;第11章 案例学习：一个在线消息板&lt;br/&gt;11.1 消息板Web站点&lt;br/&gt;11.2 帮助者代码&lt;br/&gt;11.3 消息板的数据库&lt;br/&gt;11.3.1 访问数据库&lt;br/&gt;11.3.2 创建数据库表&lt;br/&gt;11.3.3 MESSAGETREE表&lt;br/&gt;11.3.4 连接到数据库&lt;br/&gt;11.4 创建和维护用户信息&lt;br/&gt;11.4.1 work Bean&lt;br/&gt;11.4.2 创建一个新用户&lt;br/&gt;11.4.3 登录&lt;br/&gt;11.4.4 退出&lt;br/&gt;11.5 创建和维护关于消息的信息&lt;br/&gt;11.5.1 浏览单个消息&lt;br/&gt;11.5.2 浏览消息集合（查找结果）&lt;br/&gt;11.5.3 浏览消息集合（消息的线程）&lt;br/&gt;11.5.4 发布消息&lt;br/&gt;11.5.5 删除消息&lt;br/&gt;11.6 小结&lt;br/&gt;第Ⅳ部分 高级议题&lt;br/&gt;第12章 配置一个Web应用&lt;br/&gt;12.1 一个简单的Web???用&lt;br/&gt;12.1.1 创建目录&lt;br/&gt;12.1.2 配置JSP容器&lt;br/&gt;12.2 一个更实际的Web应用&lt;br/&gt;12.3 创建一个Web档案文件&lt;br/&gt;12.3.1 Java档案文件&lt;br/&gt;12.3.2 Web档案文件&lt;br/&gt;12.4 小结&lt;br/&gt;第13章 创建定制标记&lt;br/&gt;13.1 什么是标记&lt;br/&gt;13.2 配置定制标记&lt;br/&gt;13.3 创建一个简单的定制标记&lt;br/&gt;13.3.1 定义标记&lt;br/&gt;13.3.2 标记处理器类&lt;br/&gt;13.3.3 doStartTag和doEndTag方法&lt;br/&gt;13.4 具有属性的标记&lt;br/&gt;13.5 必要的属性&lt;br/&gt;13.6 属性值和运行时表达式&lt;br/&gt;13.7 包含（或不包含）标记的体&lt;br/&gt;13.7.1 有实体的标记&lt;br/&gt;13.7.2 跳过标记体&lt;br/&gt;13.7.3 其他bodycontent选项&lt;br/&gt;13.8 处理标记的实体&lt;br/&gt;13.9 多次处理实体&lt;br/&gt;13.10 Body标记的生存期&lt;br/&gt;13.11 设置Page变量的值&lt;br/&gt;13.12 定义VariableInfo对象的其他方法&lt;br/&gt;13.13 嵌套标记&lt;br/&gt;13.14 深层嵌套&lt;br/&gt;13.15 小结&lt;br/&gt;第14章 案例学习：一个Web购物车&lt;br/&gt;14.1 从用户观点看购物车&lt;br/&gt;14.2 购物车数据库&lt;br/&gt;14.3 订购表单&lt;br/&gt;14.3.1 重复的标记处理器&lt;br/&gt;14.3.2 逐个操作项目的标记处理器&lt;br/&gt;14.4 一个详细页面&lt;br/&gt;14.4.1 来自客户端脚本的帮助&lt;br/&gt;14.4.2 在详细页面上的包含文件&lt;br/&gt;14.5 校验页面&lt;br/&gt;14.5.1 重复的标记处理器&lt;br/&gt;14.5.2 逐项操作的标记处理器&lt;br/&gt;14.5.3 用户提供的表单信息&lt;br/&gt;14.6 保存订单&lt;br/&gt;14.7 小结&lt;br/&gt;附录A 配套光盘内容&lt;br/&gt;附录B 超文本传输协议&lt;br/&gt;附录C 用Windows中的Access配置数据库&lt;br/&gt;</description><pubDate>2008-03-03 10:51:46</pubDate></item>
<item><title>Beginning JavaServer Pages</title><link>http://www.netyi.net/training/704e2947-995b-442f-b611-1bc28a12e99c</link><description>About the Authors&lt;br/&gt;Vivek Chopra has over ten years of experience as a software developer, architect, and team lead, with&lt;br/&gt;extensive experience with Web services, J2EE, and middleware technologies. He has worked and consulted&lt;br/&gt;at a number of Silicon Valley companies and startups and has (pending) patents on Web services.&lt;br/&gt;Vivek actively writes about technology and has coauthored half a dozen books on topics such as opensource&lt;br/&gt;software, Java, XML, and Web services. He contributes to open source, too, and has developed&lt;br/&gt;parts of the uddi4j library, an open-source Java API for UDDI.&lt;br/&gt;Sing Li, first bit by the microcomputer bug in 1978, has grown up with the microprocessor age. His first&lt;br/&gt;personal computer was a do-it-yourself Netronics COSMIC ELF computer with 256 bytes of memory,&lt;br/&gt;mail-ordered from the back pages of Popular Electronics magazine. Currently, Sing is a consultant, system&lt;br/&gt;designer, open-source software contributor, and freelance writer. He writes for several popular technical&lt;br/&gt;journals and e-zines and is the creator of the Internet Global Phone, one of the very first Internet phones&lt;br/&gt;available. He has authored and coauthored numerous books across diverse technical topics, including&lt;br/&gt;JSP, Tomcat, servlets, XML, Jini, and JXTA.&lt;br/&gt;Rupert Jones is a Technical Lead for J2EE projects at Internet Business Systems. Over the past six years,&lt;br/&gt;Rupert has provided software development and consulting services for blue-chip companies, both in&lt;br/&gt;Australia and internationally. He lives and works in Melbourne, Australia. Rupert can be contacted at&lt;br/&gt;rup@rupertjones.com.&lt;br/&gt;Jon Eaves has been developing software in a variety of languages and domains for over 15 years. He is&lt;br/&gt;currently employed by ThoughtWorks, developing large-scale enterprise systems using J2EE. When he&lt;br/&gt;can find spare time, he develops J2ME/MIDP applications and works on the BouncyCastle Crypto APIs&lt;br/&gt;(www.bouncycastle.org). Jon can be reached at jon@eaves.org.&lt;br/&gt;John T. Bell has more than 20 years of software development experience and currently serves as the lead&lt;br/&gt;software architect for the Web site of a major hospitality company based in Bethesda, Maryland. He is&lt;br/&gt;also an adjunct professor, teaching server-side Java technologies for the Center for Applied Information&lt;br/&gt;Technology at Towson State University. He has a master’s degree in Computer Systems Management&lt;br/&gt;and a bachelor’s degree in Electrical Engineering, both from the University of Maryland. This is Mr.&lt;br/&gt;Bell’s third contribution to a Wrox title. He is also the author of The J2EE Open Source Toolkit.</description><pubDate>2008-01-11 01:06:05</pubDate></item>
<item><title>Pro Apache Beehive</title><link>http://www.netyi.net/training/c2cda242-8ae4-4264-8e96-21523d86a13d</link><description>CHAPTER 1 What's Apache Beehive?&lt;br/&gt;CHAPTER 2 Introducing Web Services and SOA Fundamentals&lt;br/&gt;CHAPTER 3 Introducing Annotations&lt;br/&gt;CHAPTER 4 Dissecting Java Page Flows&lt;br/&gt;CHAPTER 5 Using NetUI and Page Flows&lt;br/&gt;CHAPTER 6 Using Controls&lt;br/&gt;CHAPTER 7 Working with Beehive Web Services and JSR 181&lt;br/&gt;CHAPTER 8 Using XMLBeans &lt;br/&gt;APPENDIX A Setting Up Your Development Environment&lt;br/&gt;APPENDIX B Working with Eclipse and Pollinate&lt;br/&gt;APPENDIX C Contributing to Beehive and XMLBeans&lt;br/&gt;INDEX</description><pubDate>2007-12-20 22:40:02</pubDate></item>
<item><title>JavaScript.Examples.Bible.pdf</title><link>http://www.netyi.net/training/765a94e2-6f51-47e5-8015-5014370853d4</link><description>Javascript实例宝典 英文版 权威著作&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;Because most of the content of this volume was created as part of the&lt;br/&gt;JavaScript Bible, the acknowledgments that you see in your copy of the 4th or&lt;br/&gt;Gold editions apply equally to this volume. But this JavaScript Examples Bible did&lt;br/&gt;not come into being without additional effort on the part of dedicated Hungry&lt;br/&gt;Minds, Inc., staff. In particular, I want to thank Sharon Cox for turning my idea into a&lt;br/&gt;title, and editor Neil Romanosky, who, even after marshaling over 4,000 pages of&lt;br/&gt;content for the 4th and Gold editions, took charge of this volume to maintain continuity&lt;br/&gt;across the entire series. Thanks, too, to my friends and family, who certainly&lt;br/&gt;must have grown weary of my tales of reaching schedule milestones on this project&lt;br/&gt;not once, not twice, but three times over many, many months.</description><pubDate>2007-12-20 17:08:26</pubDate></item>
<item><title>基于JSP的网上购物系统设计</title><link>http://www.netyi.net/training/afec95bf-4311-4243-a589-bbcd6d1622a6</link><description>伴随着Internet的蓬勃发展，网络购物中心作为电子商务的一种形式正以其高效、低成本的优势，逐步成为新兴的经营模式和理念，人们已经不再满足用途信息的浏览和发布，而是渴望着能够充分享受网络所带来的更加多的便利。网络购物正适应了当今社会快节奏地生活，使顾客足不出户便可以方便快捷轻松地选购自己喜欢的商品。&lt;br/&gt;本系统便是尝试用JSP在网络上架构一个动态的电子商务网站，它是在Windows XP下，以SQL Server 2000为数据库开发平台，Tomcat网络信息服务作为应用服务器，采用JSP(Java Server Pages)技术开发的网上购物系统。他分前台部分和后台部分，前台部分由用户使用，主要包括用户注册，购物车管理，订单管理，个人资料管理，留言板管理等功能；后台部分由管理员使用，主要包括商品管理，处理订单，用户信息管理，链接信息管理等功能。&lt;br/&gt;建立后的网站系统是一个动态、交互式、具有商品提供、系统管理、用户留言等功能的电子商务网站。&lt;br/&gt;</description><pubDate>2007-12-14 23:02:10</pubDate></item>
<item><title>jsp全攻略</title><link>http://www.netyi.net/training/3ff00fb1-062c-4544-a185-10b12766d2c9</link><description>优秀的JSP由浅入深教程，包括JSP数据库等技术</description><pubDate>2007-12-07 15:57:44</pubDate></item>
<item><title>专家门诊-JSP开发答疑200问（CD）</title><link>http://www.netyi.net/training/8deb83ae-b1d2-4356-adae-ea5ae91da315</link><description>本书精选了230多个实用性很强的问题和常用需求，旨在帮助读者解决在JSP应用程序开发中经常遇到的实际问题，提高程序开发效率。本书内容涵盖了搭建开发环境、JSP基础知识、JavaBean高级应用、JSP高级组件、表单验证、文件处理与XML技术、数据库连接与访问技术、JSP安全、异常处理与调试发布、Struts专题等内容。本书所列出的问题均是在经过充分调研的基础上，从实际开发项目中总结出来的典型问题，问题的解决方法也注重实用性。本书每节都提供有程序设计示例代码。 &lt;br/&gt;　　 &lt;br/&gt;本书适合于已经初步掌握JSP编程概念、方法的读者阅读，可以帮助读者迅速掌握实际应用中的开发技巧。</description><pubDate>2007-12-07 12:28:08</pubDate></item>
<item><title>jsp通用模块光盘</title><link>http://www.netyi.net/training/b67d9a3e-6ac1-4b74-bcc8-9509cf4d0e48</link><description>HelloWorldProject文件夹	本书第一章使用的案例代码&lt;br/&gt;JSPBasic文件夹	本书第二章使用的案例代码&lt;br/&gt;LoginProject文件夹	本书第三、四章使用的案例代码&lt;br/&gt;BBS文件夹	本书第六章使用的案例代码&lt;br/&gt;Vote文件夹	本书第七章使用的案例代码&lt;br/&gt;News文件夹	本书第八章使用的案例代码&lt;br/&gt;ECommerce文件夹	本书第九章使用的案例代码&lt;br/&gt;数据库脚本文件夹	本书所有项目使用的数据库脚本语句文件&lt;br/&gt;</description><pubDate>2007-12-07 10:31:11</pubDate></item>
<item><title>精通EJB</title><link>http://www.netyi.net/training/763095f6-7ba7-4bbc-8817-67168e82b0e0</link><description>  学习EJB的精典教材。&lt;br/&gt;   Enterprise JavaBean(EJB)是一种服务器端组件体系结构，它简化了Java开发企业级的分布式组件应用程序的过程。通过EJB，我们能写出可扩展的、健壮的和安全的应用程序，而不用自己去写复杂的分布式组件框架，EJB用语开发服务器端应用程序，通过利用由业界提供的预先写好的分布式基础结构，我们可以快速而且轻松地利用Java构建服务器端组件。</description><pubDate>2007-11-08 02:19:27</pubDate></item>
<item><title>JSP视频教程---初级编程</title><link>http://www.netyi.net/training/9f5c24e2-b8d5-4126-b816-6feaca1f6ebd</link><description /><pubDate>2007-09-27 15:23:39</pubDate></item>
<item><title>JSP视频教程---中级编程</title><link>http://www.netyi.net/training/380a4488-950f-4478-82ee-63e94e278f4b</link><description /><pubDate>2007-09-27 15:23:38</pubDate></item>
<item><title>JSP数据库系统开发案例精选</title><link>http://www.netyi.net/training/d71f1e45-cdb4-4df1-b546-efb8a7987efc</link><description /><pubDate>2007-09-18 16:05:42</pubDate></item>
<item><title>西安电子科技大学JSP在线视频课程 第11～15讲</title><link>http://www.netyi.net/training/8c8d121b-280a-4007-8f0e-056f87f2faca</link><description>网络程序设计 第11讲 &lt;br/&gt;这节主要讲了JSP内置对象；request对象的基本概念和用例 &lt;br/&gt;网络程序设计 第12讲 &lt;br/&gt;这节主要讲了request对象中处理处理汉字信息；request对象常用方法举例；request对象的用户注册实例；HTML表单和表格的概念和实例。(本讲有2个ppt不能正常显示,第一个持续约9分钟,第二个2分左右.)&lt;br/&gt;网络程序设计 第13讲 &lt;br/&gt;这节主要讲了 4.2 response对象；4.2.1 动态响应contentType属性；4.2.2 response的HTTP文件头；4.2.3 response重定向；4.2.4 response的状态行 &lt;br/&gt;网络程序设计 第14讲 &lt;br/&gt;这节主要讲了4.3 session对象；4.3.1 session对象的id；4.3.2 session对象与URL重写；4.3.3 session对象的常用方法 &lt;br/&gt;网络程序设计 第15讲 &lt;br/&gt;这节主要讲了session对象的常用方法 &lt;br/&gt;</description><pubDate>2007-09-01 16:30:42</pubDate></item>
<item><title>西安电子科技大学JSP在线视频课程 第6～10讲</title><link>http://www.netyi.net/training/c4d9c2e1-85a2-43bc-bf16-04a07ea943d0</link><description>网络程序设计 第6讲 &lt;br/&gt;这节主要讲了JSP页面和服务目录；JSP的运行原理。&lt;br/&gt;网络程序设计 第7讲 &lt;br/&gt;这节主要讲了JSP页面的基本结构；变量和方法的声明 &lt;br/&gt;网络程序设计 第8讲 &lt;br/&gt;这节主要讲了Java程序片；表达式；JSP中的注释.&lt;br/&gt;网络程序设计 第9讲 &lt;br/&gt;这节主要讲了 JSP指令标签；page指令标签；include指令标签 &lt;br/&gt;网络程序设计 第10讲 &lt;br/&gt;这节主要讲了 3.7 JSP动作标签；3.7.1 include动作标签； 3.7.2 param动作标签；3.7.3 forward动作标签；3.7.4 plugin动作标签；3.7.5 useBean动作标签 &lt;br/&gt;</description><pubDate>2007-09-01 15:57:21</pubDate></item>
<item><title>JSP_2技术手册</title><link>http://www.netyi.net/training/74fc24f1-f4f7-409e-b660-06cdfb876155</link><description>适合入门者学习。&lt;br/&gt;内容简介：&lt;br/&gt;第一章 安装执行环境&lt;br/&gt;第二章 Serlet简介&lt;br/&gt;第三章 JSP2.0 简介&lt;br/&gt;第四章 JSP语法&lt;br/&gt;第五章 属性与范围&lt;br/&gt;第六章 Expression Language&lt;br/&gt;第七章 JSTL 1.1&lt;br/&gt;作者：林上杰 林康司&lt;br/&gt;出版处：电子工业出版社</description><pubDate>2007-08-29 19:33:48</pubDate></item>
<item><title>Pro Hibernate 3</title><link>http://www.netyi.net/training/ef76e9b1-cad8-4249-9373-b5f0fdd38c21</link><description>2005年出版，介绍Hibernate 3的书记书籍。&lt;br/&gt;内容简介：&lt;br/&gt; Pro Hibernate 3 is the first book to offer complete coverage of the open source lightweight Hibernate 3 and its new features. Authors Dave Minter and Jeff Linwood discuss the new persistence layer and share design tips and best practices. And the duo goes beyond just explaining &amp;quot;how to&amp;quot; use parts of Hibernate; they probe well beneath the surface, and teach you how to step back and solve problems thoroughly.&lt;br/&gt;If you have experience using Java with databases, but lack experience with Hibernate, then this book is ideal for you. Similarly, if you have some familiarity with Hibernate 2 and now want to learn the nuances of version 3, then this book is a wise addition to your library.</description><pubDate>2007-08-22 13:35:33</pubDate></item>
<item><title>A_JSP基础语法（上）</title><link>http://www.netyi.net/training/b75380b1-8402-473c-835e-0c40743607b8</link><description /><pubDate>2007-08-16 11:04:48</pubDate></item>
<item><title>jsp简单标签编程</title><link>http://www.netyi.net/training/a6dc38b5-beb4-4426-b128-8fbb6fc7fc9c</link><description /><pubDate>2007-08-13 14:21:10</pubDate></item>
<item><title>Spring in Action , 2nd Edition</title><link>http://www.netyi.net/training/5ec56a62-30f1-459d-a75a-2bbecaa07a2f</link><description>2007年8月Manning出版社出版的&amp;quot;Spring in Action&amp;quot;第2版，介绍最新的Spring 2.0技术。&lt;br/&gt;内容介绍:&lt;br/&gt;Spring in Action 2E is an expanded, completely updated second edition of the best &lt;br/&gt;selling Spring in Action. Written by Craig Walls, one of Manning's best writers, this &lt;br/&gt;book covers the exciting new features of Spring 2.0, which was released in October &lt;br/&gt;2006. &lt;br/&gt;Spring is a lightweight container framework that represents an exciting way to build &lt;br/&gt;enterprise components with simple Java objects. By employing dependency injection and &lt;br/&gt;AOP, Spring encourages loosely coupled code and enables plain-old Java objects with &lt;br/&gt;capabilities that were previously reserved for EJBs. This book is a hands-on, &lt;br/&gt;example-driven exploration of the Spring Framework. Combining short code snippets and &lt;br/&gt;an ongoing example developed throughout the book, it shows readers how to build simple &lt;br/&gt;and efficient J2EE applications, how to solve persistence problems, handle asynchronous messaging, create and consume remote services, build web applications, and integrate &lt;br/&gt;with most popular web frameworks. Readers will learn how to use Spring to write &lt;br/&gt;simpler, easier to maintain code so they can focus on what really matters-- critical &lt;br/&gt;business needs. &lt;br/&gt;Spring in Action, 2E is for Java developers who are looking for ways to build &lt;br/&gt;enterprise-grade applications based on simple Java objects, without resorting to more &lt;br/&gt;complex and invasive EJBs. Even hard-core EJB users will find this book valuable as &lt;br/&gt;Spring in Action, 2E will describe ways to use EJB components alongside Spring. &lt;br/&gt;Software architects will also find Spring in Action, 2E useful as they assess and &lt;br/&gt;apply lightweight techniques prescribed by Spring. and learn how Spring can be applied &lt;br/&gt;at the various layers of enterprise applications. </description><pubDate>2007-08-08 11:40:10</pubDate></item>
<item><title>北大青鸟J2EE_JSP完美课件</title><link>http://www.netyi.net/training/7cebf43d-2dca-4c2f-807f-c4e522f20e01</link><description>我看过了很受用，比看视频来的快，强烈推荐！&lt;br/&gt;&lt;br/&gt;课程目标：&lt;br/&gt;1理解Web应用及开发的基本概念&lt;br/&gt;2掌握Servlet、会话管理、Filter及JavaMail&lt;br/&gt;3掌握JSP 、JSP EL及JSTL&lt;br/&gt;4编写基于MVC模式的Java Web应用&lt;br/&gt;&lt;br/&gt;课程内容：&lt;br/&gt;chap1：Web 应用程序 – 概述&lt;br/&gt;chap2：Servlet 使用入门&lt;br/&gt;chap3：会话跟踪简介&lt;br/&gt;chap4：JSP 简介&lt;br/&gt;chap5：JSP脚本和指令的使用&lt;br/&gt;chap6：JSP脚本和指令的使用&lt;br/&gt;chap7：JSP 隐式对象&lt;br/&gt;chap8：JavaBean 和 JSP 中的标准动作&lt;br/&gt;chap9：JSP 表达式语言&lt;br/&gt;chap10：自定义标签&lt;br/&gt;chap11：JSP 标准标签库 &lt;br/&gt;chap12：过滤器&lt;br/&gt;chap13：自定义标签&lt;br/&gt;&lt;br/&gt;专题1：socket_JDBC&lt;br/&gt;专题2：java多线程技术</description><pubDate>2007-08-03 19:50:50</pubDate></item>
<item><title>JSP+oracle数据库编程指南</title><link>http://www.netyi.net/training/2059b62f-81ba-4d6a-b0ef-a6a0868d6ee1</link><description>JSP+oracle数据库编程指南</description><pubDate>2007-07-27 21:39:30</pubDate></item>
<item><title>Struts新闻管理系统</title><link>http://www.netyi.net/training/cca0e606-f33f-464a-bed0-3af176762cb6</link><description>Struts新闻管理系统学习版说明&lt;br/&gt;1.本程序为学习struts的朋友提供一个例子。&lt;br/&gt;2.本程序部分实现AJAX功能，采用DWR框架。&lt;br/&gt;3.程序运行环境为MYECLIPSE 5.0 + TOMACT 5.5 + ORACLE 9i&lt;br/&gt;4.配置说明：将lib目录下的commons-pool-1.2.jar，commons-dbcp-1.2.jar，ojdbc14.jar复制到TOMACT目录下的COMMON下的LIB目录中。&lt;br/&gt;5.登陆用户名：test密码为空。&lt;br/&gt;&lt;br/&gt;修正版更新：&lt;br/&gt;增加了分页功能，重写了readme。加上了sqlserver和mysql实现的代码。</description><pubDate>2007-07-23 23:34:42</pubDate></item>
<item><title>Beginning JBoss Seam</title><link>http://www.netyi.net/training/5d9adfb4-9696-4717-8447-f72e5bfff9d2</link><description>2007年2月的新书,英文PDF格式.&lt;br/&gt;内容简介(转自amazon书店):&lt;br/&gt;&amp;#183;Introduces JSF? and EJB? 3 fundamentals which Seam uses and ties together &lt;br/&gt;&amp;#183;Explains basic and advanced Seam functions and tools &lt;br/&gt;&amp;#183;Features a functioning, in-depth demonstration so you can better learn how to use Seam &lt;br/&gt;</description><pubDate>2007-07-20 22:57:56</pubDate></item>
<item><title>java网页开发的艺术</title><link>http://www.netyi.net/training/faacb188-8544-4807-bf73-42bcaf57bcf9</link><description>本书分为三部分，分别讲述了WEB体系、WEB构架和最佳实践。</description><pubDate>2007-07-06 11:20:48</pubDate></item>
<item><title>jsp程序开发范例宝典6-10</title><link>http://www.netyi.net/training/ebc787e6-0d14-487b-922a-1f0da5ca5f17</link><description /><pubDate>2007-06-26 17:10:59</pubDate></item>
<item><title>jsp程序开发范例宝典16-19</title><link>http://www.netyi.net/training/b6e780f2-5cd2-42dc-9898-e4276ff07729</link><description /><pubDate>2007-06-26 17:10:58</pubDate></item>
<item><title>jsp程序开发范例宝典11-15</title><link>http://www.netyi.net/training/fcd17dff-ed7a-4ae4-ab5e-798a79a095ba</link><description /><pubDate>2007-06-26 17:10:57</pubDate></item>
<item><title>jsp程序开发范例宝典1-5</title><link>http://www.netyi.net/training/62b43fe6-55ac-4ba2-be49-a80ff7f6aa0f</link><description /><pubDate>2007-06-26 17:10:56</pubDate></item>
<item><title>吉林大学-脚本语言与网页设计(jsp)(下)</title><link>http://www.netyi.net/training/3d63a0a6-c07f-41ae-9218-e94e17b557a6</link><description /><pubDate>2007-06-21 14:32:47</pubDate></item>
<item><title>吉林大学-脚本语言与网页设计(jsp)(上)</title><link>http://www.netyi.net/training/ff9ff4cb-94f0-4f42-844f-30b21d9d2291</link><description /><pubDate>2007-06-21 14:32:44</pubDate></item>
<item><title>JSP+JAVABEANS电子商务网站</title><link>http://www.netyi.net/training/f0781c2a-bebe-4f2a-8333-fb2f0a5fad14</link><description>包括4套页面设计方案，并包含拉长达30页的课程设计论文</description><pubDate>2007-06-20 00:19:00</pubDate></item>
<item><title>JSP 2.0技术手册</title><link>http://www.netyi.net/training/8c5c23af-f2e4-44d7-a684-a0874a3d30b7</link><description>JSP 2.0技术手册</description><pubDate>2007-06-19 10:48:57</pubDate></item>
<item><title>JavaServer Pages? Standard Tag Library(JSTL) Version 1.1 Pre-FCS</title><link>http://www.netyi.net/training/63e7380b-72ae-42df-ae5e-ea3bd31a2be7</link><description>JSTL是一个不断完善的开放源代码的JSP标签库，是由apache的jakarta小组来维护的。JSTL只能运行在支持JSP1.2和Servlet2.3规范的容器上，如tomcat 4.x。但是在即将推出的JSP 2.0中是作为标准支持的。&lt;br/&gt;&lt;br/&gt;JSTL 1.0 发布于 2002 年 6 月，由四个定制标记库（core、format、xml 和 sql）和一对通用标记库验证器（ScriptFreeTLV 和 PermittedTaglibsTLV）组成。core 标记库提供了定制操作，通过限制了作用域的变量管理数据，以及执行页面内容的迭代和条件操作。它还提供了用来生成和操作 URL 的标记。顾名思义，format 标记库定义了用来格式化数据（尤其是数字和日期）的操作。它还支持使用本地化资源束进行 JSP 页面的国际化。xml 库包含一些标记，这些标记用来操作通过 XML 表示的数据，而 sql 库定义了用来查询关系数据库的操作。 &lt;br/&gt;&lt;br/&gt;两个 JSTL 标记库验证器允许开发人员在其 JSP 应用程序中强制使用编码标准。可以配置 ScriptFreeTLV 验证器以在 JSP 页面中禁用各种类型的 JSP 脚本元素 — scriptlet、表达式和声明。类似地，PermittedTaglibsTLV 验证器可以用来限制可能由应用程序的 JSP 页面访问的定制标记库集（包括 JSTL 标记库）。 &lt;br/&gt;&lt;br/&gt;尽管 JSTL 最终将会成为 J2EE 平台的必需组件，但目前只有少数应用程序服务器包括它。JSTL 1.0 的参考实现可作为 Apache 软件基金会（Apache Software Foundation）的 Jakarta Taglibs 项目（请参阅参考资料）的一部分而获得。可以将该参考实现中的定制标记库合并到任何支持 JSP 1.2 和 Servlet 2.3 规范的服务器，以添加对 JSTL 的支持。&lt;br/&gt;</description><pubDate>2007-06-19 10:25:41</pubDate></item>
<item><title>毕业设计书店电子商务网站设计与实现</title><link>http://www.netyi.net/training/192cdc65-4f1d-42fd-ab29-3062d50b815c</link><description>毕业设计程序与资料,</description><pubDate>2007-06-13 10:12:02</pubDate></item>
<item><title>JDK-API中文版.CHM</title><link>http://www.netyi.net/training/3a3517f8-17b0-48e6-a566-f6e534b3b9c0</link><description>JDK 库函数的中文介绍</description><pubDate>2007-06-12 11:08:07</pubDate></item>
<item><title>struts+Hibernate+spring</title><link>http://www.netyi.net/training/3a9a5c47-a385-48b8-848e-80ba1282f327</link><description>Eclipse精要与高级开发技术.pdf&lt;br/&gt;hibernate3.1参考手册中文版.pdf&lt;br/&gt;JBuilder培训教程（Borland）.pdf&lt;br/&gt;spring.pdf&lt;br/&gt;精通Hibernate：Java对象持久化技术详解.pdf&lt;br/&gt;精通Struts：基于MVC的Java Web设计与开发.pdf</description><pubDate>2007-06-10 22:11:49</pubDate></item>
<item><title>More Servlets and JSPages</title><link>http://www.netyi.net/training/94827d5d-2fa5-4b55-b83e-51389490c08a</link><description>供709页&lt;br/&gt;More Servlets and JavaServer Pages shows developers how to&lt;br/&gt;use the latest advances in servlet and JSP technology. A&lt;br/&gt;companion to the worldwide bestseller Core Servlets and&lt;br/&gt;JavaServer Pages, it starts with a fast introduction to basic&lt;br/&gt;servlet and JSP development, including session tracking, custom&lt;br/&gt;JSP tag libraries, and the use of the MVC architecture. It then&lt;br/&gt;covers the use and deployment of Web applications, declarative&lt;br/&gt;and programmatic security, servlet and JSP filters, life-cycle&lt;br/&gt;event listeners, new features for writing tag libraries, the&lt;br/&gt;standard JSP tag library (JSPTL), and much more.&lt;br/&gt;Acknowledgments&lt;br/&gt;About the Author&lt;br/&gt;Introduction&lt;br/&gt;Who Should Read This Book&lt;br/&gt;Book Distinctives&lt;br/&gt;How This Book Is Organized&lt;br/&gt;Conventions&lt;br/&gt;About the Web Site&lt;br/&gt;I: The Basics&lt;br/&gt;1. Server Setup and Configuration&lt;br/&gt;1.1 Download the Java Development Kit (JDK)&lt;br/&gt;1.2 Download a Server for Your Desktop&lt;br/&gt;1.3 Change the Port and Configure Other Server Settings&lt;br/&gt;1.4 Test the Server&lt;br/&gt;1.5 Try Some Simple HTML and JSP Pages&lt;br/&gt;1.6 Set Up Your Development Environment&lt;br/&gt;1.7 Compile and Test Some Simple Servlets&lt;br/&gt;1.8 Establish a Simplified Deployment Method&lt;br/&gt;1.9 Deployment Directories for Default Web Application: Summary&lt;br/&gt;2. A Fast Introduction to Basic Servlet Programming&lt;br/&gt;2.1 The Advantages of Servlets Over “Traditional” CGI&lt;br/&gt;2.2 Basic Servlet Structure&lt;br/&gt;2.3 The Servlet Life Cycle&lt;br/&gt;2.4 The Client Request: Form Data&lt;br/&gt;2.5 The Client Request: HTTP Request Headers&lt;br/&gt;2.6 The Servlet Equivalent of the Standard CGI Variables&lt;br/&gt;2.7 The Server Response: HTTP Status Codes&lt;br/&gt;2.8 The Server Response: HTTP Response Headers&lt;br/&gt;2.9 Cookies&lt;br/&gt;2.10 Session Tracking&lt;br/&gt;3. A Fast Introduction to Basic JSP Programming&lt;br/&gt;3.1 JSP Overview&lt;br/&gt;3.2 Advantages of JSP&lt;br/&gt;3.3 Invoking Code with JSP Scripting Elements&lt;br/&gt;3.4 Structuring Autogenerated Servlets: The JSP page Directive&lt;br/&gt;3.5 Including Files and Applets in JSP Documents&lt;br/&gt;3.6 Using JavaBeans with JSP&lt;br/&gt;3.7 Defining Custom JSP Tag Libraries&lt;br/&gt;3.8 Integrating Servlets and JSP: The MVC Architecture&lt;br/&gt;II: Web Applications&lt;br/&gt;4. Using and Deploying Web Applications&lt;br/&gt;4.1 Registering Web Applications&lt;br/&gt;4.2 Structure of a Web Application&lt;br/&gt;4.3 Deploying Web Applications in WAR Files&lt;br/&gt;4.4 Recording Dependencies on Server Libraries&lt;br/&gt;4.5 Handling Relative URLs in Web Applications&lt;br/&gt;4.6 Sharing Data Among Web Applications&lt;br/&gt;5. Controlling Web Application Behavior with web.xml&lt;br/&gt;5.1 Defining the Header and Root Elements&lt;br/&gt;5.2 The Order of Elements within the Deployment Descriptor&lt;br/&gt;5.3 Assigning Names and Custom URLs&lt;br/&gt;5.4 Disabling the Invoker Servlet&lt;br/&gt;5.5 Initializing and Preloading Servlets and JSP Pages&lt;br/&gt;5.6 Declaring Filters&lt;br/&gt;5.7 Specifying Welcome Pages&lt;br/&gt;5.8 Designating Pages to Handle Errors&lt;br/&gt;5.9 Providing Security&lt;br/&gt;5.10 Controlling Session Timeouts&lt;br/&gt;5.11 Documenting Web Applications&lt;br/&gt;5.12 Associating Files with MIME Types&lt;br/&gt;5.13 Locating Tag Library Descriptors&lt;br/&gt;5.14 Designating Application Event Listeners&lt;br/&gt;5.15 J2EE Elements&lt;br/&gt;6. A Sample Web Application: An Online Boat Shop&lt;br/&gt;6.1 General Configuration Files&lt;br/&gt;6.2 The Top-Level Page&lt;br/&gt;6.3 The Second-Level Pages&lt;br/&gt;6.4 The Item Display Servlet&lt;br/&gt;6.5 The Purchase Display Page&lt;br/&gt;III: Web Application Security&lt;br/&gt;7. Declarative Security&lt;br/&gt;7.1 Form-Based Authentication&lt;br/&gt;7.2 Example: Form-Based Authentication&lt;br/&gt;7.3 BASIC Authentication&lt;br/&gt;7.4 Example: BASIC Authentication&lt;br/&gt;7.5 Configuring Tomcat to Use SSL&lt;br/&gt;8. Programmatic Security&lt;br/&gt;8.1 Combining Container-Managed and Programmatic Security&lt;br/&gt;8.2 Example: Combining Container-Managed and Programmatic Security&lt;br/&gt;8.3 Handling All Security Programmatically&lt;br/&gt;8.4 Example: Handling All Security Programmatically&lt;br/&gt;8.5 Using Programmatic Security with SSL&lt;br/&gt;8.6 Example: Programmatic Security and SSL&lt;br/&gt;IV: Major New Servlet and JSP Capabilities&lt;br/&gt;9. Servlet and JSP Filters&lt;br/&gt;9.1 Creating Basic Filters&lt;br/&gt;9.2 Example: A Reporting Filter&lt;br/&gt;9.3 Accessing the Servlet Context from Filters&lt;br/&gt;9.4 Example: A Logging Filter&lt;br/&gt;9.5 Using Filter Initialization Parameters&lt;br/&gt;9.6 Example: An Access Time Filter&lt;br/&gt;9.7 Blocking the Response&lt;br/&gt;9.8 Example: A Prohibited-Site Filter&lt;br/&gt;9.9 Modifying the Response&lt;br/&gt;9.10 Example: A Replacement Filter&lt;br/&gt;9.11 Example: A Compression Filter&lt;br/&gt;9.12 The Complete Filter Deployment Descriptor&lt;br/&gt;10. The Application Events Framework&lt;br/&gt;10.1 Monitoring Creation and Destruction of the Servlet Context&lt;br/&gt;10.2 Example: Initializing Commonly Used Data&lt;br/&gt;10.3 Detecting Changes in Servlet Context Attributes&lt;br/&gt;10.4 Example: Monitoring Changes to Commonly Used Data&lt;br/&gt;10.5 Packaging Listeners with Tag Libraries&lt;br/&gt;10.6 Example: Packaging the Company Name Listeners&lt;br/&gt;10.7 Recognizing Session Creation and Destruction&lt;br/&gt;10.8 Example: A Listener That Counts Sessions&lt;br/&gt;10.9 Watching for Changes in Session Attributes&lt;br/&gt;10.10 Example: Monitoring Yacht Orders&lt;br/&gt;10.11 Using Multiple Cooperating Listeners&lt;br/&gt;10.12 The Complete Events Deployment Descriptor&lt;br/&gt;V: New Tag Library Capabilities&lt;br/&gt;11. New Tag Library Features in JSP 1.2&lt;br/&gt;11.1 Using the New Tag Library Descriptor Format&lt;br/&gt;11.2 Bundling Listeners with Tag Libraries&lt;br/&gt;11.3 Checking Syntax with TagLibraryValidator&lt;br/&gt;11.4 Aside: Parsing XML with SAX 2.0&lt;br/&gt;11.5 Handling Exceptions with the TryCatchFinally Interface&lt;br/&gt;11.6 New Names for Return Values&lt;br/&gt;11.7 Looping Without Generating BodyContent&lt;br/&gt;11.8 Introducing Scripting Variables in the TLD File&lt;br/&gt;12. The JSP Standard Tag Library&lt;br/&gt;12.1 Using JSTL: An Overview&lt;br/&gt;12.2 Installing and Configuring JSTL&lt;br/&gt;12.3 Looping with the forEach Tag&lt;br/&gt;12.4 Accessing the Loop Status&lt;br/&gt;12.5 Looping with the forTokens Tag&lt;br/&gt;12.6 Evaluating Items Conditionally&lt;br/&gt;12.7 Using the Expression Language&lt;br/&gt;Server Organization and Structure&lt;br/&gt;Download Sites&lt;br/&gt;Starting and Stopping the Server&lt;br/&gt;Servlet JAR File Locations&lt;br/&gt;Locations for Files in the Default Web Application&lt;br/&gt;Locations for Files in Custom Web Applications</description><pubDate>2007-06-09 21:23:00</pubDate></item>
<item><title>用多媒体学JSP CD1-中级编程</title><link>http://www.netyi.net/training/703fe337-552f-4a53-bb4d-d514f1bc231c</link><description /><pubDate>2007-05-30 14:51:21</pubDate></item>
</channel></rss>