动态网站制作指南 [  QQ表情  ]
[ 投票调查 ]
[ 企业邮箱 ]
[ 网站空间 ]
网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
ASP源码 | .Net源码 | PHP源码 | JSP源码 | JAVA源码 | CGI源码 | VB源码 | C++源码 | Delphi源码 | PB源码 | VF源码 | 汇编 | 服务器
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > Java教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
网络编程:ASP教程,ASP.NET教程,PHP教程,JSP教程,C#教程,数据库,XML教程,Ajax,Java,Perl,Shell,VB教程,Delphi,C/C++教程,软件工程,J2EE/J2ME,移动开发
文章搜索服务
邮件订阅
输入你的邮件地址,
你将不会错过任何关于:
[ Java教程 ]的信息

本月文章推荐
.用java编写客户-服务器程序的若干.
.java初级版FAQ---[jdk 安装].
.java设计模式之State(对应每种状.
.经典Java开发工具介绍(3):Web.
.使用struts,ibaits和JSTL开发简便.
.Sun首次表示要使Java成为开放源代.
.Java多线程同步设计中使用Metux.
.一个容易疏忽的多线程程序陷阱.
.J2SE综合:JAVA异常处理方式的区别.
.Eclipse插件ANTLR Studio 发布开.
.struts构建文件上传(七).
.基于jCOM搭建Java-微软信息桥梁.
.indexOf 方法.
.sup 方法.
.改进后的英文字母打字游戏.
.如何实现用jacob来调用word的宏.
.你如何使用JavaBean操作数据库?.
.setDate 方法.
.java中的基于套结字(socket)的通.
.通用上载组件的原理及实现.

JAVA TECHNOLOGY EXAM OBJECTIVES

发表日期:2008-1-5 |



  SUN CERTIFIED WEB COMPONENT DEVELOPER FOR J2EE[tm] PLATFORM
  Section 1 - The Servlet Model
  
  1.1 For each of the HTTP methods, GET, POST, and PUT, identify the corresponding method in the HttpServlet class.
  
  1.2 For each of the HTTP methods, GET, POST, and HEAD, identify triggers that might cause a browser to use the method, and identify benefits or functionality of the method.
  
  1.3 For each of the following operations, identify the interface and method name that should be used:
  
  Retrieve Html FORM parameters from the request
  Retrieve a servlet initialization parameter
  Retrieve HTTP request header inFORMation
  Set an HTTP response header; set the content type of the response
  Acquire a text stream for the response
  Acquire a binary stream for the response
  Redirect an HTTP request to another URL
  1.4 Identify the interface and method to Access values and resources and to set object attributes within the following three Web scopes:
  Request
  Session
  Context
  1.5 Given a life-cycle method: init, service, or destroy, identify correct statements about its purpose or about how and when it is invoked.
  
  1.6 Use a RequestDispatcher to include or forward to a Web resource.
  
  Section 2 - The StrUCture and Deployment of Modern Servlet Web Applications
  
  2.1 Identify the structure of a Web Application and Web Archive file, the name of the WebApp deployment descriptor, and the name of the Directories where you place the following:
  
  The WebApp deployment descriptor
  The WebApp class files
  Any auxiliary JAR files
  2.2 Match the name with a description of purpose or functionality, for each of the following deployment descriptor elements:
  Servlet instance
  Servlet name
  Servlet class
  Initialization parameters
  URL to named servlet mapping
  
  Section 3 - The Servlet Container Model
  
  3.1 Identify the uses for and the interfaces (or classes) and methods to achieve the following features:
  
  Servlet context init. parameters
  Servlet context listener
  Servlet context attribute listener
  Session attribute listeners
  3.2 Identify the WebApp deployment descriptor element name that declares the following features:
  Servlet context init. parameters
  Servlet context listener
  Servlet context attribute listener
  Session attribute listeners
  3.3 Distinguish the behavior of the following in a distributable:
  Servlet context init. parameters
  Servlet context listener
  Servlet context attribute listener
  Session attribute listeners
  
  Section 4 - Designing and Developing Servlets to Handle Server-side Exceptions
  
  4.1 For each of the following cases, identify correctly constructed code for handling business logic exceptions, and match that code with correct statements about the code's behavior: Return an HTTP error using the sendError response method; Return an HTTP error using the setStatus method.
  
  4.2 Given a set of business logic exceptions, identify the following: The configuration that the deployment descriptor uses to handle each exception; How to use a RequestDispatcher to forward the request to an error page; Specify the handling declaratively in the deployment descriptor.
  
  4.3 Identify the method used for the following: Write a message to the WebApp log; Write a message and an exception to the WebApp log.
  
  Section 5 - Designing and Developing Servlets Using Session Management
  
  5.1 Identify the interface and method for each of the following:
  
  Retrieve a session object across multiple requests to the same or different servlets within the same WebApp
  Store objects into a session object
  Retrieve objects from a session object
  Respond to the event when a particular object is added to a session
  Respond to the event when a session is created and destroyed
  EXPunge a session object
  5.2 Given a scenario, state whether a session object will be invalidated.
  
  5.3 Given that URL-rewriting must be used for session management, identify the design requirement on session-related HTML pages.
  
  Section 6 - Designing and Developing Secure Web Applications
  
  6.1 Identify correct descriptions or statements about the security issues:
  
  Authentication, authorization
  Data integrity
  Auditing
  Malicious code
  Web site attacks
  6.2 Identify the deployment descriptor element names, and their structure, that declare the following:
  A security constraint
  A Web resource
  The login configuration
  A security role
  6.3 Given an authentication type: BASIC, DIGEST, FORM, and CLIENT-CERT, identify the correct definition of its mechanism.
  
  Section 7 - Designing and Developing Thread-safe Servlets
  
  7.1 Identify which attribute scopes are thread-safe:
  
  Local variables
  Instance variables
  Class variables
  Request attributes
  Session attributes
  Context attributes
  7.2 Identify correct statements about differences between the multi-threaded and single-threaded servlet models.
  
  7.3 Identify the interface used to declare that a servlet must use the single thread model.
  
  Section 8 - The Java Server Pages (jsp) Technology Model
  
  8.1 Write the opening and closing tags for the following JSP tag types:
  
  Directive
  Declaration
  Scriptlet
  Expression
  8.2 Given a type of JSP tag, identify correct statements about its purpose or use.
  
  8.3 Given a JSP tag type, identify the equivalent XML-based tags.
  
  8.4 Identify the page directive attribute, and its values, that:
  Import a Java class into the JSP page
  Declare that a JSP page exists within a session
  Declare that a JSP page uses an error page
  Declare that a JSP page is an error page
  8.5 Identify and put in sequence the following elements of the JSP page lifecycle:
  Page translation
  JSP page compilation
  Load class
  Create instance
  Call jspInit
  Call _jspService
  Call jspDestroy
  8.6 Match correct descriptions about purpose, function, or use with any of the following implicit objects:
  request
  response
  out
  session
  config
  application
  page
  pageContext
  exception
  8.7 Distinguish correct and incorrect scriptlet code for:
  A conditional statement;
  An iteration statement
  
  Section 9 - Designing and Developing Reusable Web Components
  
  9.1 Given a description of required functionality, identify the JSP page directive or standard tag in the correct FORMat with the correct attributes required to specify the inclusion of a Web component into the JSP page.
  
  Section 10 - Designing and Developing JSP pages Using JavaBean Components
  
  10.1 For any of the following tag functions, match the correctly constructed tag, with attributes and values as appropriate, with the corresponding description of the tag's functionality:
  
  Declare the use of a JavaBean component within the page.
  Specify, for jsp:useBean or jsp:getProperty tags, the name of an attribute.
  Specify, for a jsp:useBean tag, the class of the attribute.
  Specify, for a jsp:useBean tag, the scope of the attribute.
  Access or mutate a property from a declared JavaBean.
  S
上一篇:Java认证经典模拟题 人气:687
下一篇:通往Java认证的阶梯 人气:473
浏览全部Java的内容 Dreamweaver插件下载 常用网页广告代码全集
  最新网站源码 最新软件下载
2008-12-4 PhpCMS2008 bulid 081203 简体中
2008-12-4 Menalto Gallery v1.5.10 多国语
2008-12-4 Phpcms2008 bulid 081203 简体中
2008-12-4 乘风多用户计数器 v3.92 (Acc)
2008-12-4 乘风多用户计数器 v3.92 (Sql)
2008-12-4 BBSxp 2008 8.0.5 SP2 Build 081
2008-12-4 ASBLOG v2.5 bulid 081118(1201)
2008-12-4 非零坊幽默短信 v3.4
2008-12-4 红茶巴士(公交)查询系统 v3.0
2008-11-29 Tencent Traveler 4.4
2008-11-29 龙卷风网络收音机 v3.0.0.0
2008-11-29 Intel Chipset Software Install
2008-11-29 TweakVI 1.0 Build 1100
2008-11-29 Opera 9.62 Build 10469
2008-11-29 MPlayer WW编译版 SVN-r28044(20
2008-11-29 NetTools网络工具v1.0.0破解版
2008-11-29 3DGallery三维体验1.1破解版
2008-11-29 SecretBook保密本v1.0破解版
  发表评论
姓 名: 验证码:
内 容:
站长工具:网站收录查询 | Google PR查询 | ALEXA排名查询 | CSS在线编辑器 | OPEN参数生成器 | 弹出式窗口代码产生器 | 密码登录生成器 | 在线按钮生成器 | Meta标签生成器 | 多色彩特效字代码生成器 | 网页代码调试器 | 在线FTP登陆 | Flash取色器 | 配色代码对照表 | 配色辞典 | CSS生成器 | 广告代码 | 框架网页代码生成器 | js/vbs加密 | md5加密 | 进制转换 | UTF-8 转换工具 | 在线调色板 | Html转换js | Html转换asp | Html转换php | Html转换perl
实用工具:汉字翻译拼音 | 拼音字典 | 符号对照表 | 个税计算 | 实时汇率查询换算 | 经典小工具 | 汉字简繁转换 | 普通单位换算 | 公制单位换算 | 生辰老黄历 | 国内电话区号 | 国家代码与域名缩写 | 文字加密解密 | 元素周期表 | 健康查询 | 世界时间 | 万年历 | 二十四节气 | 汉字横竖排版 | 手机号码查询 | 计算器 | ip搜索
业务联系 | 广告刊登 | 频道合作 | 投稿荐稿 | 联系方式 | 加入收藏 | RSS订阅
Copyright © 2000-2009 www.knowsky.com All rights reserved | 沪ICP备05001343号
ホームページ制作 不動産検索システム 求人情報
防水工事·改修工事 フットサル大会 探偵
SEO対策 中国語教室 ホームページ作成