Java EE (5) -- Java EE 6 JavaServer Faces Developer Certified Expert(1z0-896)
- Identify the features of JSF such as Facelets, BookMarkable View, AJAX support and the benefits they bring in
- Identify the life cycle stages of JSF, flow of request processing, and purpose of FacesContext
- Design XHTML pages using JSF HTML tag library and demonstrate usage of JSF implicit objects
- Develop and associate model components with views using CDI Named beans and identify the advantages of CDI Named beans over Managed Bean
- Manage user and application state using various scopes like flash, conversation, application, request, and session
- Implement internationalization/Localization using resource bundle and Locale class
- Design JSF pages with static and dynamic implicit navigation
- Configure faces-config.xml to implement navigation rules including conditional and redirection
- Design bookmarkable views
- Implement data conversion model using JSF standard converters
- Create, configure, and use custom converters
- Identify the best suited standard validator and implement it in a given JSF application
- Create, configure, and use custom validators
- Describe the usage of bean validation
- Use CDI Named bean in a JSF application to handle action and valuechange events
- Create and implement listeners to handle events
- Develop JSF application that handle life cycle events
- Implement asynchronous events using AJAX
- Design a DataTable with header and footer to populate and manipulate data from various components like Array, List, ResultSet, DataModel and describe the differences between <f:dataTable> and <ui:repeat/>
- Implement composite components in JSF application and enhance it using AJAX
- Implement templates in a JSF application and describe the differences between <ui:composition/> and <ui:decorate/>
- Identify when and how to use custom components and custom renderers.
- Enhance JSF application using HTML5 components
- Configure security for JSF application using authorization and authentication techniques
- Implement efficient error handling and debugging techniques in a JSF application
- Configure and deploy a JSF application
Java EE (5) -- Java EE 6 JavaServer Faces Developer Certified Expert(1z0-896)的更多相关文章
- Java EE (2) -- Java EE 6 Enterprise JavaBeans Developer Certified Expert(1z0-895)
Introduction to Java EE Gain an understanding of the Java Platform, Enterprise Edition (Java EE) Exa ...
- Java EE (4) -- Java EE 6 Java Persistence API Developer Certified Expert(1z0-898)
Overview of the Java Persistence API Describe the basics of Object Relational Mapping (ORM) Define t ...
- Java EE (3) -- Java EE 6 Web Services Developer Certified Expert(1z0-897)
Create an SOAP web service in a servlet container Create a RESTful web service in a servlet containe ...
- Java EE (1) -- Java EE 6 Web Component Developer Certified Expert(1z0-899)
1: hash map, hash tables 的区别 The HashMap class is roughly equivalent to Hashtable, except that it is ...
- Java EE 和 Java Web
什么是 Java Web 应用程序? Java Web 应用程序会生成包含各种类型的标记语言(HTML 和 XML 等)和动态内容的交互式 Web 页.它通常由 Web 组件组成(如 JavaServ ...
- Java EE (7) -- Java EE 6 Enterprise Architect Certified Master(1z0-807)
Application Design Concepts and Principles Identify the effects of an object-oriented approach to sy ...
- Java EE (6) -- Java EE 5 Enterprise Architect Certified Master
Section 1: Application Design Concepts and Principles Explain the main advantages of an object-orien ...
- Java SE、Java EE、Java ME
Java SE(Java Platform,Standard Edition).Java SE 以前称为 J2SE.它允许开发和部署在桌面.服务器.嵌入式环境和实时环境中使用的 Java 应用程序.J ...
- Java SE、Java EE和Java ME有什么区别?
Java现在已不仅仅是一种语言,从广义上说,它代表了一个技术体系.该体系根据应用方向的不同主要分为Java SE.Java EE和Java ME的3个部分. 1998年12月份Sun公司公布的Java ...
随机推荐
- System.getProperty("catalina.home")
System.getProperty("catalina.base"),服务器配置目录
- web.xml中listener作用及使用
一.WebContextLoaderListener 监听类 它能捕捉到server的启动和停止,在启动和停止触发里面的方法做对应的操作! 它必须在web.xml 中配置才干使用,是配置监听类的 二. ...
- 所有CN_消息的说明
Notification Message Corresponding WindowsConstant Message Description cn_CharToItem wm_CharToItem T ...
- Spark&Spark性能调优实战
Spark特别适用于多次操作特定的数据,分mem-only和mem & disk.当中mem-only:效率高,但占用大量的内存,成本非常高;mem & disk:内存用完后,会自己主 ...
- [置顶] 大量相关gis资源网盘打包下载
详细请下载附件 所有资源下载(网盘下载): http://laoheitan.bego.cc arcgis教程: http://www.bego.cc/file/23322579 ENVI教程: ht ...
- 开源 java CMS - FreeCMS2.3 留言管理
原文地址:http://javaz.cn/site/javaz/site_study/info/2015/22027.html 项目地址:http://www.freeteam.cn/ 留言管理 管理 ...
- 【瞎搞】 HDU 3101 The Heart of the Country
比赛时愣是没读懂 题意:有N 个城市 每一个城市都有 val 个 士兵 , 有几条路连接 当敌方攻击你的某个城市时 该城市以及与该城市相连接的城市的士兵总数 要大于 K 不大于 K 该城市就被攻陷.士 ...
- TBDR缺点
TBDR全称Tile-based Deferred Rendering.它是Power VR独特的TBR技术的一种延伸实现手段.TBR/TBDR通过将每一帧画面划分成多个矩形区域,并对区域内的全部像素 ...
- hdu1260(dp)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1260 分析:简单dp,dp[i]=min(dp[i-1]+a[i],dp[i-2]); #includ ...
- HDU1087:Super Jumping! Jumping! Jumping!(DP)
Problem Description Nowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very ...