SlideShare a Scribd company logo
1 of 10
Download to read offline
Core Java+ J2EE+Struts+Hibernate+Spring
Java technology is a portfolio of products that are based on the power of networks and the idea that the same software
should run on many different kinds of systems and devices
Java technology readily harnesses the power of the network because it is both a programming language and a selection of
specialized platforms. As such, it standardizes the development and deployment of the kind of secure, portable, reliable, and
scalable applications required by the networked economy. Because the Internet and World Wide Web play a major role in
new business development, consistent and widely supported standards are critical to growth and success.
Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
A- Core Java
The Core Java segment deals with the basics of Java. It is designed keeping in mind the basics of Java
Programming Language that will help new students to understand the Java language, its syntax, its
simplicity and what makes it a language of choice among so many languages available in the marketplace. It
also talks about the Architecture of Java and the uniqueness of Java that makes it a platform along with
programming language of choice.
Audience
The course is designed for Students to make them familiar with the Java Programming Language and the
techniques used in industry to implement a project
Prerequisites
Students should have some basic-level knowledge of programming in any programming language,
preferably C or C++, or other OOP languages.
Approach
Extensive practical exercises take students through all major aspects of the design and development of Java
programs
Objectives
After completing this course, the student should be able to:
• Apply OOP principles
• Design OO applications using abstraction, encapsulation, modularity, and hierarchy
• Create applications
• Use Java Exceptions to guarantee graceful error recovery of application
• Do input/output using Java
• Use JDBC to access data base tables
Topics
A-1. Introduction to Features of Java
1.1 Architecture of Java
1.2 Garbage Collection
1.3 Difference between JDK, JRE, JVM and JIT
1.4 Installing JDK
1.5 Writing first program in Java and compiling and running it using Console
2. Introduction to Eclipse IDE.
2.1 Data Types in Java
2.2 Java Integer Types
2.3 Variable Declaration and Initialization
2.4 Integer Literals
2.5 Char Literals
2.6 Floating Point Literals
2.7 Comments in Java
Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
2.8 Casting
2.9 Arithmetic, Bitwise, Boolean Operators and Shift Operators
2.10Java Keywords and reserved words
3. The Java Control Statements (if – else and switch – case statements)
3.1 Iteration Statements (loops and labeled break and labeled continue)
3.2 Debugging a program using Eclipse IDE
4. Introduction to Classes & Objects
4.1 Constructors, Object Instantiation
4.2 Arrays in Java – declaration, definition and types of Arrays
4.3 Abstract classes and interfaces
5. Introduction to Object Oriented
Programming vs. Conventional Programming
5.1 Method Overloading & Overriding
5.2 == vs. equals()
5.3 The this, this(), super and super(), Constructor Chaining
6. Modifiers in Java – private, protected, static, public, final and default
6.1 Packages and Access specifiers and their scope
7. Immutable and Mutable Classes
7.1 Difference between String and String Buffer classes
8. Comparator and Comparable classes
8.1 Shallow Copy vs. Deep Copy
9. Exception Handling and writing your own exceptions
9.1 The try, catch, throws, throw and finally
9.2 Re - throwing an exception
9.3 Checked and Unchecked Exceptions
10. Multithreading
10.1 Difference between Thread and Process
10.2 The Thread class and Runnable interface.
10.3 Daemon and User Threads
10.4 Creating your own threads
10.5 The synchronized method and block
10.6 Deadlocks
10.7 Avoiding dead locks
11. The Collection Framework
11.1 Introduction to Map, Set and List.
11.2 The Map, Set and List interfaces in Java.
11.3 Implementation of collection interfaces by different classes in Java.
Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
11.4 The Vector, ArrayList, HashMap, Hashtable, HashSet, SortedSet, and TreeSet.
11.5 Synchronizing unsynchronized collections
12. Java Database Connectivity API (JDBC)
12.1 Design of JDBC
12.2 Typical uses of JDBC
12.3 Types of JDBC Drivers
12.4 Getting a JDBC driver and loading it through java.sql.Driver Manager class
12.5 The Connection, Statement, and ResultSet interfaces
12.6 Accessing a database using JDBC and using SQL queries.
12.7 The Prepared Statement and Callable Statement
12.8 Scrollable and Updatable ResultSets
13. Java I/O package
13.1 Introduction to Files and Streams
13.2 DataInputStream and DataOutputStream
13.3 FileInputStream and FileOutputStream
13.4 Reader and Writer
13.5 Why use Readers and Writers
13.6 Object serialization using ObjectInputStream
and ObjectOutputStream
13.7 using transient keyword
B- Java Server Side (Advance Java / J2EE)
This course presents the recommended Java “Model View Controller” Design pattern to implement the use of
Servlets, JavaServer Pages and Java Beans, using JDBC to access RDBMS databases. It also reviews the Server
architecture; explaining how applications are deployed in a server; and discussing Developers “runtime”
customizations of Servers and Applications within the Server, using Server.xml and web.xml files. Server
Security is overviewed and demoed.
Extensive workshops (65%) are used to supplement lecture (35%). At the completion of this course, the
students will have all the tools necessary to write Java Server Side applications that access databases.
This course explores Java's database connectivity package, JDBC. Topics include JDBC elements, the steps
used to access a database with JDBC, data retrieval issues, and some of the advanced features that will gain
more support with future releases of the JDBC API. Participants will use the JDBC interface to provide a call-
level API for SQL-based database applications. This hands-on course is composed of comprehensive lectures,
practical project illustrations, and independent programming sessions. The session's exercises include a
realistic database application using modular Java architecture where the participant produces specific reports
based on data in the database.
This course teaches Servlets (Ver 2.4) programming as well as JSPs (Ver 2.0) programming. Students will
learn the basics of creating both Servlets and JSPs including their interaction; how to dispatch
Servlets/JSPs from within other Servlets/JSP
Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
It teaches the recommend use of Java Beans with JDBC to manage data in the sever environment and
provides explicate coding examples on how to handle the management of Java Bean scope (page, request,
session and application) from Servlets to JSPs
Optionally, time permitting, overviews and examples of: Networking Distributed Objects (including RMI/
remote procedural calls), as well as Java Collections.
Audience
This course is intended for programmers who have at least six months experience in Java and who want to
learn about server side programming, accessing DBs .
Approach
Jdk 1.5, Jakarta-Tomcat-5.x, APIs for Java, Servlets and JSPs and Access DBs. Students Will be able to set up
and run a Web-Server on their own PC. Using Exadel Studio with Eclipse to build and debug Web
Applications
Content
1. Introduction to Web Applications
1.1. The Web App Architecture
1.2. Why servlets over CGI,
1.3. The Servlet inheritance hierarchy
1.4. Servlet lifecycle
1.5. Difference between send redirect and forward
1.6. The ServletConfig and ServletContext
1.7. Writing your servlets
1.8. Installing and understanding Servlet Container
1.9. Starting and Stopping Servlet Container
1.10. Running your servlets
1.11. The Servlet’s Single Thread Model
1.12. Session tracking using HTTPSession, Cookies,
Hidden Form Fields and URL rewriting
1.13. Understanding the limitations of the session
tracking techniques
1.14. Debugging using Eclipse IDE, the web.xml files
tags.
1.15. The FilterServlet API
1.16. Securing web applications
1.17. Authentication, Authorization, Roles, etc
1.18. Packaging web application and deploying it
1.19.Understanding the JDBC 2.0 API
1.20.Working with DataSource and InitialContexts
1.21.Configuring the JDBC driver with Web Server
Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
1.22.Configuring the DataSource with Web Server
1.23.Configuring the DataSource with Web App
1.24.Running the Web App and accessing the database
2. The Server Status Codes
2.1 The Java Server Pages (JSP 2.0)
2.2 The JSP life – cycle
2.3 JSP directives,
2.4 Limitations of Servlets over JSP and vice-versa
2.5 Implicit objects
2.6 Attributes
2.7 Session tracking
2.8 JSP and JDBC
2.9 Servlet, JSP communication
3. The Java Beans
3.1 How to use Java Beans in JSP and servlets
3.2 The MVC architecture
3.3 Accessing Java Bean in a JSP page
3.4 The scope of a Java Bean – page, request, session, application
Applying MVC
4. The Enterprise Java Beans- Introduction,
4.1 EJB vs. Java Beans
4.2 Understanding the Home Interface, Remote Interface
4.3 The Session Bean – stateless and stateful
4.4 The Entity Bean – CMP vs. BMP,
4.5 The Java Message Bean
4.6 The deployment descriptor and the Weblogic deployment descriptor,
4.7 The EJB container and its functionality
4.8 The roles of various players in an Enterprise Application
4.9 Writing and deploying your EJBs, calling EJBs from JSP and Servlets and consoles.
Struts course outline
Module 1: Struts Architecture
MVC and Model 2
Command Pattern
Jakarta Struts
More XML, Less Java!
Action Mappings
JavaBeans in Struts
Working with Forms
Validation
Relational Models
Presentation Technology
Tiles
Module 2: Action Mappings
Command Pattern for Web Applications
Action Servlets
Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
Action
Action Mapping
Struts Configuration
Selecting a Forward
Global Forwards
Forwarding Actions
Others Action Subtypes
Declarative Exception Handling
Module 3: Forms
Working with HTML Forms
What Not To Do
Action Forms
Relationship to Input
Relationship to Actions
Relationship to the Model
Relationship to Output
Dyna Action Form and Map – Backed Forms
Validation
Coarse – Grained Form Beans
Module 4: Relational Data
JDBC
Drivers
Driver Manager (JDBC 1.0)
Data Source (JDBC 2.0)
Connection
Statement
Result Set
The Struts Data- Source Manager
Multi – Tier Design
Business Logic Beans
Persistence Logic
EJB
Module 5: Struts Tag Libraries
Building View Components
Struts Tag Library
Attributes
Building Forms
<html : Forms>
<html : test> et. al.
Forms and Form Beans
Scope and Duration of Forms Data
Managing Hyperlinks
Error Messages
Logic Tags
Module 6: The JSP Standard Tag Library
JSTL Overview
JSP Expression Language
Core Tags
Formatting Tags
XML Tags
SQL Tags
Mixing JSTL, EL, Scripts and Actions
Module 7: Internationalization and Localization
i18n in Java
Locale
Resource Bundle
i18n in Actions
i18n in JSTL
i18n in Validation
Module 8: Input Validation
Validation in Web Applications
Validation in Struts
The Struts Validater Plug – ins
Validating Action Form Subtypes
Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
Configuring Validation
Validators
Rules
Is <html: Form> Necessary?
Reporting Errors
Multi – Page Validation
Client – Side Validation
Limitation on the Client Side
Implementing a Validator
Implementing Action Form. Validate
Module 9: Under the Hood
Global Objects and Keys
Modules
Action Servlet, Request Processor, Exception Handler
Struts Configuration in Depth
The Org. apache. struts. config Package
Plugs – Ins
Logging with Commons and Log4J
Configuring Log4J
Logging in Web Applications
The Org. apache. struts. util Package
Common Bean Utils
Module 10: Best Practices
Cardinalities in Struts Design
Coarse – Grained Form Beans
Many Actions from One View
Multiple Forwards
Many Mappings to one Action
Chaining Actions
Dynamic Forwarding
Form Beans as Mediators
Using Reflection and Bean Utils
Reusing Validation Rules
Mapping – Based Validation
Graceful Validation
Module 11: Tiles
Consistent Look and Feel
Reusable Layouts and Content
The Tiles Framework
Instantiating Layouts
Body – Wrap Insertions
Tiles and Style sheets
Working with Tiles Attributes
The Tiles Context
Definitions
Aggregation and Inheritance
The Tiles Plug – In
Forwarding to Definitions
Performance Considerations
Hibernate Course Structure
1 Why Hibernate?
Understanding object persistence
Identity - Inheritance - Associations - Object/relational mapping
Using direct JDBC
Example application - Retrieving object graphs using JDBC - Persisting object graphs to a relational model - Deleting object graphs -
Querying object graphs
Persistence with Hibernate
Simplicity and flexibility - Completeness - Performance
Summary
Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
2 Installing and building projects with Ant
Getting a Hibernate distribution
Installing Ant - Getting Ant - Extracting and installing Ant
Setting up a database
Getting MySQL - Testing MySQL - MySQL drivers
Setting up a project
Defining directories - Ant 101 - Running Ant
3 Hibernate basics
Configuring Hibernate
Basic configuration
Creating mapping definitions
IDs and generators - Properties - Many-to-one element - Proxies - Collections - Cascades - Fetching associated objects
Building the SessionFactory
Configuring the SessionFactory
Persisting objects
Retrieving objects
The Session cache
Advanced configuration
Connection pools - Transactions - Cache providers
Inheritance
Table per class hierarchy - Table per subclass
4 Associations and components
Associations
Many-to-one relationships, in depth - The central configuration file - Defining sample data
Building tables and SchemaExport
Logging with log4j and Commons Logging - Running SchemaExport - Loading the Events - Refactoring - Finding Events - Cascades
Components
What's in a component? - Mapping a component - Why use a component?
5 Collections and custom types
Persisting collections and arrays
Using interfaces - Mapping persistent collections - Collection types - Lazy collections - Sorted collections - Bidirectional associations -
Cascading collections
Implementing custom types
UserTypes - Implementing CompositeUserTypes
6 Querying persistent objects
Using HQL
session.find(?) - The Query interface - Outer joins and HQL - Show SQL
Query substitutions - Query parser
Querying objects with HQL
The FROM clause - Joins - Selects - Using functions - HQL properties - Using expressions
Criteria queries
Stored procedures
7 Organizing with Spring and data access objects
The ubiquitous DAO pattern
Keeping the HQL together
Analyzing the DAO
Boilerplate code - Potential duplication - Detached objects only
The Layer Supertype pattern
Creating an AbstractDao
The Spring Framework
What's in a template? - Beans and their factories
Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
8 Web frameworks: Struts
Defining the application
A quick overview of MVC
Service Layer pattern
Decoupling Hibernate from the web layer
Working with detached objects - Session scope - Accessing the Session from the Controller - Accessing the Session from the Service layer
Struts
Struts fundamentals - Building Struts Actions
Hibernate in the view layer
9 Unit testing with JUnit
Introduction to unit testing
Automate those tests - Assertions - Expect failures
JUnit
Test-infecting your build file - Polishing off the build file
Testing the persistence layer
What do we want to test? - Testing basic persistence - Testing queries - General database testing tips 331
Loading test data - ProjectDatabaseTestCase
11 What's new in Hibernate 3
Filters
Mapping improvements
Multiple table mapping - Discriminator formulas - Union subclasses - Property references
Dynamic classes
Annotations
Stored procedures and SQL
Persistence events
Lazy properties
LIVE PROJECT
This training experience count as a work experience that is more beneficial for the fresher.
Duration 3 Months
Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,

More Related Content

What's hot

Introduction to Java EE (J2EE)
Introduction to Java EE (J2EE)Introduction to Java EE (J2EE)
Introduction to Java EE (J2EE)Atit Patumvan
 
Building Enterprise Application with J2EE
Building Enterprise Application with J2EEBuilding Enterprise Application with J2EE
Building Enterprise Application with J2EECalance
 
Java industrial 6 month training with kvch
 Java industrial 6 month training with kvch Java industrial 6 month training with kvch
Java industrial 6 month training with kvchkvchinstitute
 
A seminar report on core java
A  seminar report on core javaA  seminar report on core java
A seminar report on core javaAisha Siddiqui
 
Learn java in hindi
Learn java in hindiLearn java in hindi
Learn java in hindiVipin sharma
 
Nitesh_Sr._Java_developer_Lead
Nitesh_Sr._Java_developer_Lead Nitesh_Sr._Java_developer_Lead
Nitesh_Sr._Java_developer_Lead Nitesh Dasari
 
Naresh Kumar
Naresh KumarNaresh Kumar
Naresh KumarNaresh K
 
Advance java summer training report
Advance java summer training report Advance java summer training report
Advance java summer training report Nitesh Saini
 
web component_development
web component_developmentweb component_development
web component_developmentbachector
 
Complete java syllabus 7448062045 Yesdo Sddd
Complete java syllabus 7448062045 Yesdo SdddComplete java syllabus 7448062045 Yesdo Sddd
Complete java syllabus 7448062045 Yesdo SdddYesdo Softindia Pvt Ltd
 
Resume joseph gregory java
Resume   joseph gregory javaResume   joseph gregory java
Resume joseph gregory javaJoseph Gregory
 
CR Bridge Solutions Pvt Ltd. Java slides
CR Bridge Solutions Pvt Ltd. Java slidesCR Bridge Solutions Pvt Ltd. Java slides
CR Bridge Solutions Pvt Ltd. Java slidesCRBTech
 

What's hot (20)

Introduction to Java EE (J2EE)
Introduction to Java EE (J2EE)Introduction to Java EE (J2EE)
Introduction to Java EE (J2EE)
 
Building Enterprise Application with J2EE
Building Enterprise Application with J2EEBuilding Enterprise Application with J2EE
Building Enterprise Application with J2EE
 
Vibhutandon
VibhutandonVibhutandon
Vibhutandon
 
Java industrial 6 month training with kvch
 Java industrial 6 month training with kvch Java industrial 6 month training with kvch
Java industrial 6 month training with kvch
 
A seminar report on core java
A  seminar report on core javaA  seminar report on core java
A seminar report on core java
 
Venugopal Kommineni
Venugopal KommineniVenugopal Kommineni
Venugopal Kommineni
 
Learn java in hindi
Learn java in hindiLearn java in hindi
Learn java in hindi
 
Nitesh_Sr._Java_developer_Lead
Nitesh_Sr._Java_developer_Lead Nitesh_Sr._Java_developer_Lead
Nitesh_Sr._Java_developer_Lead
 
J2EE Introduction
J2EE IntroductionJ2EE Introduction
J2EE Introduction
 
Naresh Kumar
Naresh KumarNaresh Kumar
Naresh Kumar
 
Advance java summer training report
Advance java summer training report Advance java summer training report
Advance java summer training report
 
Intro to Java
Intro to JavaIntro to Java
Intro to Java
 
ghanshyam_java_j2ee
ghanshyam_java_j2eeghanshyam_java_j2ee
ghanshyam_java_j2ee
 
web component_development
web component_developmentweb component_development
web component_development
 
J2ee
J2eeJ2ee
J2ee
 
Spring
SpringSpring
Spring
 
Bhavin_Resume
Bhavin_ResumeBhavin_Resume
Bhavin_Resume
 
Complete java syllabus 7448062045 Yesdo Sddd
Complete java syllabus 7448062045 Yesdo SdddComplete java syllabus 7448062045 Yesdo Sddd
Complete java syllabus 7448062045 Yesdo Sddd
 
Resume joseph gregory java
Resume   joseph gregory javaResume   joseph gregory java
Resume joseph gregory java
 
CR Bridge Solutions Pvt Ltd. Java slides
CR Bridge Solutions Pvt Ltd. Java slidesCR Bridge Solutions Pvt Ltd. Java slides
CR Bridge Solutions Pvt Ltd. Java slides
 

Viewers also liked

Bullying-is a threat to students 'life
Bullying-is a threat to students 'lifeBullying-is a threat to students 'life
Bullying-is a threat to students 'lifeslidesofmeeran
 
Abiroh Priestley Curriculum Vitae (1)
Abiroh Priestley Curriculum Vitae (1)Abiroh Priestley Curriculum Vitae (1)
Abiroh Priestley Curriculum Vitae (1)priestley Abiroh
 
Wonderland Fruits
Wonderland FruitsWonderland Fruits
Wonderland FruitsAix Pol
 
Determinant analysis in C++ using Data Structures
Determinant analysis in C++ using Data StructuresDeterminant analysis in C++ using Data Structures
Determinant analysis in C++ using Data StructuresMuhammad Umair Qadir
 
Growth of small business to big business development
Growth of small business to big business developmentGrowth of small business to big business development
Growth of small business to big business developmentsarzasergio
 
Vikhuanthuonggap 130109070359-phpapp02
Vikhuanthuonggap 130109070359-phpapp02Vikhuanthuonggap 130109070359-phpapp02
Vikhuanthuonggap 130109070359-phpapp02Quỳnh Tjểu Quỷ
 
Factors influencing growth and development
Factors influencing growth and developmentFactors influencing growth and development
Factors influencing growth and developmentsarzasergio
 

Viewers also liked (12)

C5 su phan-cat_trung
C5 su phan-cat_trungC5 su phan-cat_trung
C5 su phan-cat_trung
 
Bullying-is a threat to students 'life
Bullying-is a threat to students 'lifeBullying-is a threat to students 'life
Bullying-is a threat to students 'life
 
Abiroh Priestley Curriculum Vitae (1)
Abiroh Priestley Curriculum Vitae (1)Abiroh Priestley Curriculum Vitae (1)
Abiroh Priestley Curriculum Vitae (1)
 
Wonderland Fruits
Wonderland FruitsWonderland Fruits
Wonderland Fruits
 
Determinant analysis in C++ using Data Structures
Determinant analysis in C++ using Data StructuresDeterminant analysis in C++ using Data Structures
Determinant analysis in C++ using Data Structures
 
Aditya Resume
Aditya ResumeAditya Resume
Aditya Resume
 
AR Resume
AR ResumeAR Resume
AR Resume
 
Growth of small business to big business development
Growth of small business to big business developmentGrowth of small business to big business development
Growth of small business to big business development
 
B4 dh
B4 dhB4 dh
B4 dh
 
Vikhuanthuonggap 130109070359-phpapp02
Vikhuanthuonggap 130109070359-phpapp02Vikhuanthuonggap 130109070359-phpapp02
Vikhuanthuonggap 130109070359-phpapp02
 
Virus 130109070414-phpapp02
Virus 130109070414-phpapp02Virus 130109070414-phpapp02
Virus 130109070414-phpapp02
 
Factors influencing growth and development
Factors influencing growth and developmentFactors influencing growth and development
Factors influencing growth and development
 

Similar to Java training noida hibernate+spring+struts+web services(1)

CORE JAVA & ADVANCE JAVA
CORE JAVA & ADVANCE JAVACORE JAVA & ADVANCE JAVA
CORE JAVA & ADVANCE JAVABALUJAINSTITUTE
 
JAVA J2EE Training in Coimbatore - Fundamentals of Java J2EE
JAVA J2EE Training in Coimbatore - Fundamentals of Java J2EE JAVA J2EE Training in Coimbatore - Fundamentals of Java J2EE
JAVA J2EE Training in Coimbatore - Fundamentals of Java J2EE abile technologies
 
Full stack Java Developer
Full stack Java DeveloperFull stack Java Developer
Full stack Java DeveloperMdHasan872214
 
Java Coaching in Hyderabad introduction
Java Coaching in Hyderabad  introductionJava Coaching in Hyderabad  introduction
Java Coaching in Hyderabad introductionAzure Data Factory
 
Industrial Summer Training for MCA/BCA/BE/B-Tech Students
Industrial Summer Training for MCA/BCA/BE/B-Tech StudentsIndustrial Summer Training for MCA/BCA/BE/B-Tech Students
Industrial Summer Training for MCA/BCA/BE/B-Tech StudentsTech Mentro
 
Advance Java Course in Noida.pptx
Advance Java Course in Noida.pptxAdvance Java Course in Noida.pptx
Advance Java Course in Noida.pptxashishthakur730937
 
6 Weeks Project Based Summer Training
6 Weeks Project Based Summer Training6 Weeks Project Based Summer Training
6 Weeks Project Based Summer TrainingTech Mentro
 
C,c++,java,php,.net training institute in delhi, best training institute for ...
C,c++,java,php,.net training institute in delhi, best training institute for ...C,c++,java,php,.net training institute in delhi, best training institute for ...
C,c++,java,php,.net training institute in delhi, best training institute for ...MCM COmpetitive Classes
 
java full stack content 2 (2023).docx
java full stack content 2 (2023).docxjava full stack content 2 (2023).docx
java full stack content 2 (2023).docxMUDDUKRISHNA14
 
java full stack content
java full stack contentjava full stack content
java full stack contentMUDDUKRISHNA14
 
Sreekanth java developer raj
Sreekanth java developer rajSreekanth java developer raj
Sreekanth java developer rajsreekanthavco
 
Framework adoption for java enterprise application development
Framework adoption for java enterprise application developmentFramework adoption for java enterprise application development
Framework adoption for java enterprise application developmentClarence Ho
 

Similar to Java training noida hibernate+spring+struts+web services(1) (20)

CORE JAVA & ADVANCE JAVA
CORE JAVA & ADVANCE JAVACORE JAVA & ADVANCE JAVA
CORE JAVA & ADVANCE JAVA
 
JAVA J2EE Training in Coimbatore - Fundamentals of Java J2EE
JAVA J2EE Training in Coimbatore - Fundamentals of Java J2EE JAVA J2EE Training in Coimbatore - Fundamentals of Java J2EE
JAVA J2EE Training in Coimbatore - Fundamentals of Java J2EE
 
Full stack Java Developer
Full stack Java DeveloperFull stack Java Developer
Full stack Java Developer
 
Java Coaching in Hyderabad introduction
Java Coaching in Hyderabad  introductionJava Coaching in Hyderabad  introduction
Java Coaching in Hyderabad introduction
 
Vishnu(java)
Vishnu(java)Vishnu(java)
Vishnu(java)
 
Frameworks in java
Frameworks in javaFrameworks in java
Frameworks in java
 
Industrial Summer Training for MCA/BCA/BE/B-Tech Students
Industrial Summer Training for MCA/BCA/BE/B-Tech StudentsIndustrial Summer Training for MCA/BCA/BE/B-Tech Students
Industrial Summer Training for MCA/BCA/BE/B-Tech Students
 
Introduction to Java
Introduction to JavaIntroduction to Java
Introduction to Java
 
Advance Java Course in Noida.pptx
Advance Java Course in Noida.pptxAdvance Java Course in Noida.pptx
Advance Java Course in Noida.pptx
 
Bhargav
BhargavBhargav
Bhargav
 
6 Weeks Project Based Summer Training
6 Weeks Project Based Summer Training6 Weeks Project Based Summer Training
6 Weeks Project Based Summer Training
 
C,c++,java,php,.net training institute in delhi, best training institute for ...
C,c++,java,php,.net training institute in delhi, best training institute for ...C,c++,java,php,.net training institute in delhi, best training institute for ...
C,c++,java,php,.net training institute in delhi, best training institute for ...
 
java full stack content 2 (2023).docx
java full stack content 2 (2023).docxjava full stack content 2 (2023).docx
java full stack content 2 (2023).docx
 
java full stack
java full stackjava full stack
java full stack
 
java full stack content
java full stack contentjava full stack content
java full stack content
 
Introduction to Java
Introduction to JavaIntroduction to Java
Introduction to Java
 
Sreekanth java developer raj
Sreekanth java developer rajSreekanth java developer raj
Sreekanth java developer raj
 
Framework adoption for java enterprise application development
Framework adoption for java enterprise application developmentFramework adoption for java enterprise application development
Framework adoption for java enterprise application development
 
Oracle java se 7 programming
Oracle java se 7 programmingOracle java se 7 programming
Oracle java se 7 programming
 
Javatraining
JavatrainingJavatraining
Javatraining
 

Recently uploaded

Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 

Recently uploaded (20)

Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 

Java training noida hibernate+spring+struts+web services(1)

  • 1. Core Java+ J2EE+Struts+Hibernate+Spring Java technology is a portfolio of products that are based on the power of networks and the idea that the same software should run on many different kinds of systems and devices Java technology readily harnesses the power of the network because it is both a programming language and a selection of specialized platforms. As such, it standardizes the development and deployment of the kind of secure, portable, reliable, and scalable applications required by the networked economy. Because the Internet and World Wide Web play a major role in new business development, consistent and widely supported standards are critical to growth and success. Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
  • 2. A- Core Java The Core Java segment deals with the basics of Java. It is designed keeping in mind the basics of Java Programming Language that will help new students to understand the Java language, its syntax, its simplicity and what makes it a language of choice among so many languages available in the marketplace. It also talks about the Architecture of Java and the uniqueness of Java that makes it a platform along with programming language of choice. Audience The course is designed for Students to make them familiar with the Java Programming Language and the techniques used in industry to implement a project Prerequisites Students should have some basic-level knowledge of programming in any programming language, preferably C or C++, or other OOP languages. Approach Extensive practical exercises take students through all major aspects of the design and development of Java programs Objectives After completing this course, the student should be able to: • Apply OOP principles • Design OO applications using abstraction, encapsulation, modularity, and hierarchy • Create applications • Use Java Exceptions to guarantee graceful error recovery of application • Do input/output using Java • Use JDBC to access data base tables Topics A-1. Introduction to Features of Java 1.1 Architecture of Java 1.2 Garbage Collection 1.3 Difference between JDK, JRE, JVM and JIT 1.4 Installing JDK 1.5 Writing first program in Java and compiling and running it using Console 2. Introduction to Eclipse IDE. 2.1 Data Types in Java 2.2 Java Integer Types 2.3 Variable Declaration and Initialization 2.4 Integer Literals 2.5 Char Literals 2.6 Floating Point Literals 2.7 Comments in Java Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
  • 3. 2.8 Casting 2.9 Arithmetic, Bitwise, Boolean Operators and Shift Operators 2.10Java Keywords and reserved words 3. The Java Control Statements (if – else and switch – case statements) 3.1 Iteration Statements (loops and labeled break and labeled continue) 3.2 Debugging a program using Eclipse IDE 4. Introduction to Classes & Objects 4.1 Constructors, Object Instantiation 4.2 Arrays in Java – declaration, definition and types of Arrays 4.3 Abstract classes and interfaces 5. Introduction to Object Oriented Programming vs. Conventional Programming 5.1 Method Overloading & Overriding 5.2 == vs. equals() 5.3 The this, this(), super and super(), Constructor Chaining 6. Modifiers in Java – private, protected, static, public, final and default 6.1 Packages and Access specifiers and their scope 7. Immutable and Mutable Classes 7.1 Difference between String and String Buffer classes 8. Comparator and Comparable classes 8.1 Shallow Copy vs. Deep Copy 9. Exception Handling and writing your own exceptions 9.1 The try, catch, throws, throw and finally 9.2 Re - throwing an exception 9.3 Checked and Unchecked Exceptions 10. Multithreading 10.1 Difference between Thread and Process 10.2 The Thread class and Runnable interface. 10.3 Daemon and User Threads 10.4 Creating your own threads 10.5 The synchronized method and block 10.6 Deadlocks 10.7 Avoiding dead locks 11. The Collection Framework 11.1 Introduction to Map, Set and List. 11.2 The Map, Set and List interfaces in Java. 11.3 Implementation of collection interfaces by different classes in Java. Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
  • 4. 11.4 The Vector, ArrayList, HashMap, Hashtable, HashSet, SortedSet, and TreeSet. 11.5 Synchronizing unsynchronized collections 12. Java Database Connectivity API (JDBC) 12.1 Design of JDBC 12.2 Typical uses of JDBC 12.3 Types of JDBC Drivers 12.4 Getting a JDBC driver and loading it through java.sql.Driver Manager class 12.5 The Connection, Statement, and ResultSet interfaces 12.6 Accessing a database using JDBC and using SQL queries. 12.7 The Prepared Statement and Callable Statement 12.8 Scrollable and Updatable ResultSets 13. Java I/O package 13.1 Introduction to Files and Streams 13.2 DataInputStream and DataOutputStream 13.3 FileInputStream and FileOutputStream 13.4 Reader and Writer 13.5 Why use Readers and Writers 13.6 Object serialization using ObjectInputStream and ObjectOutputStream 13.7 using transient keyword B- Java Server Side (Advance Java / J2EE) This course presents the recommended Java “Model View Controller” Design pattern to implement the use of Servlets, JavaServer Pages and Java Beans, using JDBC to access RDBMS databases. It also reviews the Server architecture; explaining how applications are deployed in a server; and discussing Developers “runtime” customizations of Servers and Applications within the Server, using Server.xml and web.xml files. Server Security is overviewed and demoed. Extensive workshops (65%) are used to supplement lecture (35%). At the completion of this course, the students will have all the tools necessary to write Java Server Side applications that access databases. This course explores Java's database connectivity package, JDBC. Topics include JDBC elements, the steps used to access a database with JDBC, data retrieval issues, and some of the advanced features that will gain more support with future releases of the JDBC API. Participants will use the JDBC interface to provide a call- level API for SQL-based database applications. This hands-on course is composed of comprehensive lectures, practical project illustrations, and independent programming sessions. The session's exercises include a realistic database application using modular Java architecture where the participant produces specific reports based on data in the database. This course teaches Servlets (Ver 2.4) programming as well as JSPs (Ver 2.0) programming. Students will learn the basics of creating both Servlets and JSPs including their interaction; how to dispatch Servlets/JSPs from within other Servlets/JSP Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
  • 5. It teaches the recommend use of Java Beans with JDBC to manage data in the sever environment and provides explicate coding examples on how to handle the management of Java Bean scope (page, request, session and application) from Servlets to JSPs Optionally, time permitting, overviews and examples of: Networking Distributed Objects (including RMI/ remote procedural calls), as well as Java Collections. Audience This course is intended for programmers who have at least six months experience in Java and who want to learn about server side programming, accessing DBs . Approach Jdk 1.5, Jakarta-Tomcat-5.x, APIs for Java, Servlets and JSPs and Access DBs. Students Will be able to set up and run a Web-Server on their own PC. Using Exadel Studio with Eclipse to build and debug Web Applications Content 1. Introduction to Web Applications 1.1. The Web App Architecture 1.2. Why servlets over CGI, 1.3. The Servlet inheritance hierarchy 1.4. Servlet lifecycle 1.5. Difference between send redirect and forward 1.6. The ServletConfig and ServletContext 1.7. Writing your servlets 1.8. Installing and understanding Servlet Container 1.9. Starting and Stopping Servlet Container 1.10. Running your servlets 1.11. The Servlet’s Single Thread Model 1.12. Session tracking using HTTPSession, Cookies, Hidden Form Fields and URL rewriting 1.13. Understanding the limitations of the session tracking techniques 1.14. Debugging using Eclipse IDE, the web.xml files tags. 1.15. The FilterServlet API 1.16. Securing web applications 1.17. Authentication, Authorization, Roles, etc 1.18. Packaging web application and deploying it 1.19.Understanding the JDBC 2.0 API 1.20.Working with DataSource and InitialContexts 1.21.Configuring the JDBC driver with Web Server Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
  • 6. 1.22.Configuring the DataSource with Web Server 1.23.Configuring the DataSource with Web App 1.24.Running the Web App and accessing the database 2. The Server Status Codes 2.1 The Java Server Pages (JSP 2.0) 2.2 The JSP life – cycle 2.3 JSP directives, 2.4 Limitations of Servlets over JSP and vice-versa 2.5 Implicit objects 2.6 Attributes 2.7 Session tracking 2.8 JSP and JDBC 2.9 Servlet, JSP communication 3. The Java Beans 3.1 How to use Java Beans in JSP and servlets 3.2 The MVC architecture 3.3 Accessing Java Bean in a JSP page 3.4 The scope of a Java Bean – page, request, session, application Applying MVC 4. The Enterprise Java Beans- Introduction, 4.1 EJB vs. Java Beans 4.2 Understanding the Home Interface, Remote Interface 4.3 The Session Bean – stateless and stateful 4.4 The Entity Bean – CMP vs. BMP, 4.5 The Java Message Bean 4.6 The deployment descriptor and the Weblogic deployment descriptor, 4.7 The EJB container and its functionality 4.8 The roles of various players in an Enterprise Application 4.9 Writing and deploying your EJBs, calling EJBs from JSP and Servlets and consoles. Struts course outline Module 1: Struts Architecture MVC and Model 2 Command Pattern Jakarta Struts More XML, Less Java! Action Mappings JavaBeans in Struts Working with Forms Validation Relational Models Presentation Technology Tiles Module 2: Action Mappings Command Pattern for Web Applications Action Servlets Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
  • 7. Action Action Mapping Struts Configuration Selecting a Forward Global Forwards Forwarding Actions Others Action Subtypes Declarative Exception Handling Module 3: Forms Working with HTML Forms What Not To Do Action Forms Relationship to Input Relationship to Actions Relationship to the Model Relationship to Output Dyna Action Form and Map – Backed Forms Validation Coarse – Grained Form Beans Module 4: Relational Data JDBC Drivers Driver Manager (JDBC 1.0) Data Source (JDBC 2.0) Connection Statement Result Set The Struts Data- Source Manager Multi – Tier Design Business Logic Beans Persistence Logic EJB Module 5: Struts Tag Libraries Building View Components Struts Tag Library Attributes Building Forms <html : Forms> <html : test> et. al. Forms and Form Beans Scope and Duration of Forms Data Managing Hyperlinks Error Messages Logic Tags Module 6: The JSP Standard Tag Library JSTL Overview JSP Expression Language Core Tags Formatting Tags XML Tags SQL Tags Mixing JSTL, EL, Scripts and Actions Module 7: Internationalization and Localization i18n in Java Locale Resource Bundle i18n in Actions i18n in JSTL i18n in Validation Module 8: Input Validation Validation in Web Applications Validation in Struts The Struts Validater Plug – ins Validating Action Form Subtypes Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
  • 8. Configuring Validation Validators Rules Is <html: Form> Necessary? Reporting Errors Multi – Page Validation Client – Side Validation Limitation on the Client Side Implementing a Validator Implementing Action Form. Validate Module 9: Under the Hood Global Objects and Keys Modules Action Servlet, Request Processor, Exception Handler Struts Configuration in Depth The Org. apache. struts. config Package Plugs – Ins Logging with Commons and Log4J Configuring Log4J Logging in Web Applications The Org. apache. struts. util Package Common Bean Utils Module 10: Best Practices Cardinalities in Struts Design Coarse – Grained Form Beans Many Actions from One View Multiple Forwards Many Mappings to one Action Chaining Actions Dynamic Forwarding Form Beans as Mediators Using Reflection and Bean Utils Reusing Validation Rules Mapping – Based Validation Graceful Validation Module 11: Tiles Consistent Look and Feel Reusable Layouts and Content The Tiles Framework Instantiating Layouts Body – Wrap Insertions Tiles and Style sheets Working with Tiles Attributes The Tiles Context Definitions Aggregation and Inheritance The Tiles Plug – In Forwarding to Definitions Performance Considerations Hibernate Course Structure 1 Why Hibernate? Understanding object persistence Identity - Inheritance - Associations - Object/relational mapping Using direct JDBC Example application - Retrieving object graphs using JDBC - Persisting object graphs to a relational model - Deleting object graphs - Querying object graphs Persistence with Hibernate Simplicity and flexibility - Completeness - Performance Summary Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
  • 9. 2 Installing and building projects with Ant Getting a Hibernate distribution Installing Ant - Getting Ant - Extracting and installing Ant Setting up a database Getting MySQL - Testing MySQL - MySQL drivers Setting up a project Defining directories - Ant 101 - Running Ant 3 Hibernate basics Configuring Hibernate Basic configuration Creating mapping definitions IDs and generators - Properties - Many-to-one element - Proxies - Collections - Cascades - Fetching associated objects Building the SessionFactory Configuring the SessionFactory Persisting objects Retrieving objects The Session cache Advanced configuration Connection pools - Transactions - Cache providers Inheritance Table per class hierarchy - Table per subclass 4 Associations and components Associations Many-to-one relationships, in depth - The central configuration file - Defining sample data Building tables and SchemaExport Logging with log4j and Commons Logging - Running SchemaExport - Loading the Events - Refactoring - Finding Events - Cascades Components What's in a component? - Mapping a component - Why use a component? 5 Collections and custom types Persisting collections and arrays Using interfaces - Mapping persistent collections - Collection types - Lazy collections - Sorted collections - Bidirectional associations - Cascading collections Implementing custom types UserTypes - Implementing CompositeUserTypes 6 Querying persistent objects Using HQL session.find(?) - The Query interface - Outer joins and HQL - Show SQL Query substitutions - Query parser Querying objects with HQL The FROM clause - Joins - Selects - Using functions - HQL properties - Using expressions Criteria queries Stored procedures 7 Organizing with Spring and data access objects The ubiquitous DAO pattern Keeping the HQL together Analyzing the DAO Boilerplate code - Potential duplication - Detached objects only The Layer Supertype pattern Creating an AbstractDao The Spring Framework What's in a template? - Beans and their factories Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,
  • 10. 8 Web frameworks: Struts Defining the application A quick overview of MVC Service Layer pattern Decoupling Hibernate from the web layer Working with detached objects - Session scope - Accessing the Session from the Controller - Accessing the Session from the Service layer Struts Struts fundamentals - Building Struts Actions Hibernate in the view layer 9 Unit testing with JUnit Introduction to unit testing Automate those tests - Assertions - Expect failures JUnit Test-infecting your build file - Polishing off the build file Testing the persistence layer What do we want to test? - Testing basic persistence - Testing queries - General database testing tips 331 Loading test data - ProjectDatabaseTestCase 11 What's new in Hibernate 3 Filters Mapping improvements Multiple table mapping - Discriminator formulas - Union subclasses - Property references Dynamic classes Annotations Stored procedures and SQL Persistence events Lazy properties LIVE PROJECT This training experience count as a work experience that is more beneficial for the fresher. Duration 3 Months Miracle Corporate Solutions Pvt. Ltd. , C-41, Sec.-2, Noida. 0120-3058447 / 8 www.miracleindia.com,