Last Updated:3/23/2006 11:39:46 AM
Qplus logo Training
 
Home >> Training >> IT Training >> Core Java Training Outline
CORE JAVA TRAINING
COURSE CONTENTS
INTRODUCTION TO JAVA
arrow Key object-oriented ideas
arrow Keywords, data types, and variables
arrow Operators
arrow Methods
arrow Classes
arrow Inheritance
arrow Interfaces
arrow Exception handling
arrow Key Java classes
arrow Using Javadoc
arrow Collection classes
arrow Java File IO
BUILDING JAVA GUIS: THE ABSTRACT WINDOWING TOOLKIT
arrow Building Java GUIs: Swing
arrow How Swing improves upon the AWT
arrow Swing application structure
arrow Managing windows and dialogs
arrow Using Swing components
arrow Using Swing components with data models: JList and JTable
INTRODUCTION TO JDBC
arrow Overview of JDBC architecture
arrow JDBC driver types
arrow Loading a driver
arrow Connecting to a database
arrow Communicating with the database via ad hoc SQL queries
 
  • Using the Statement class
  • Using the PreparedStatement class
arrow Retrieving and displaying results
arrow Invoking stored procedures via the CallableStatement class
arrow Managing connection pooling and state
INTRODUCTION TO JSP
arrow Overview of Java language and architecture
arrow Java servlet architecture
arrow How JSP simplifies the creation of servlets
INTRODUCING SERVLETS
arrow How the Servlet API fits into J2EE
arrow Servlet lifecycle
arrow Obtaining configuration information
arrow Deploying servlets
arrow Overview of servlet containers
FORMS AND SERVLETS
arrow Building an HTML form
arrow Understandings GET versus POST form submissions
arrow Submitting the form to the servlet
arrow Using the request object's getParameter() and getParameterNames() methods to obtain the data submitted via the form
SESSION MANAGEMENT WITH SERVLETS
arrow Role of state management in Web applications
arrow Using an HttpSession object to maintain state across requests
arrow Controlling session behavior via the web.xml file
arrow Handling servlet exceptions
arrow Servlet filters
arrow Bundling and deploying the servlet as an application
INTRODUCING JSP
arrow JSP lifecycle
arrow How JSPs are translated to servlets
arrow Conditions under which JSPs automatically recompile
arrow Creating and using JSP directives, expressions, scriptlets, and declarations
 
  • Will also show XML syntax for these items
arrow JSP comments (and how they differ from HTML comments)
arrow Mastering the implicit JSP objects
arrow New in JSP 2.0: EL (expression language)
JAVABEANS AND JSP
arrow The role of JavaBeans in JSP applications
arrow Architectural approaches for designing JavaBeans
arrow Creating, testing, and deploying JavaBeans
arrow Communicating with JavaBeans from JSP via jsp:useBean, jsp:setProperty, and jsp:getProperty
JDBC (JAVA DATABASE CONNECTIVITY) AND EXCEPTION HANDLING
arrow Overview of JDBC architecture
arrow JDBC driver types
arrow Loading a driver
arrow Connecting to a database
arrow Communicating with the database via ad hoc SQL queries
arrow Handling exceptions
arrow Retrieving and displaying results
arrow Invoking stored procedures via the CallableStatement class
arrow Managing connection pooling and state
USING JSP CUSTOM TAGS
arrow Writing a basic custom tag
arrow Using a deployment descriptor and a TLD (tag library descriptor)
arrow Using several tags from the Java Standard Tag Library
CASE STUDY