COURSE DESCRIPTION
Java is one of the world’s most important and widely used computer languages, and it has held this distinction for many years. Unlike some other computer languages whose influence has weared with passage of time, while Java’s has grown.
Java is a high level, robust, object-oriented and a secure and stable programming language but it is not a pure object-oriented language because it supports primitive data types like int, char etc.
Java is a platform-independent language because it has runtime environment i.e JRE and API. Here platform means a hardware or software environment in which anapplication runs.
Java codes are compiled into byte code or machine-independent code. This byte code is run on JVM (Java Virtual Machine).
The syntax is Java is almost the same as C/C++. But java does not support low-level programming functions like pointers. The codes in Java is always written in the form of Classes and objects.
As of 2020, Java is one of the most popular programming languages in use, especially for client-server web applications.Its has been estimated that there are around nine million Java developers inside the world.
Curriculum
- 4 Sections
- 47 Lessons
- 90 Days
- Servlet22
- 1.1Web Application Basics.
- 1.2Architecture and challenges of Web Application.
- 1.3Introduction to servlet
- 1.4Servlet life cycle
- 1.5Developing and Deploying Servlets
- 1.6Exploring Deployment Descriptor (web.xml)
- 1.7Handling Request and Response
- 1.8Initializing a Servlet
- 1.9Accessing Database
- 1.10Servlet Chaining
- 1.11Session Tracking & Management
- 1.12Dealing with cookies
- 1.13Transferring Request
- 1.14Accessing Web Context
- 1.15Passing INIT and CONTEXT Parameter
- 1.16Sharing information using scope object
- 1.17Controlling concurrent access
- 1.18User Authentication
- 1.19Filtering Request and Response
- 1.20Programming Filter
- 1.21Filter Mapping
- 1.22Servlet Listeners
- Java Server Pages14
- 2.1Basic JSP Architecture
- 2.2Life Cycle of JSP (Translation, compilation)
- 2.3JSP Tags and Expressions
- 2.4Role of JSP in MVC-2
- 2.5JSP with Database
- 2.6JSP Implicit Objects
- 2.7Tag Libraries
- 2.8JSP Expression Language (EL)
- 2.9Using Custom Tag
- 2.10JSP Capabilities
- 2.11Exception Handling
- 2.12Session Management
- 2.13Directives
- 2.14JSP with Java Bean
- Concept Of5
- Custom tags6