SlideShare ist ein Scribd-Unternehmen logo
1 von 18
PRESENTED BY
Pragya Jain
120283
CS-D(116)
JAVA ADVANCED
ONLINE MOVIE TICKET BOOKING WEBSITE
CONTENTS
1. About Kan Software
2. HTML
3. CSS
4. Introduction to Servlets
5. Servlet Life Cycle
6. Brief about JSP
7. Advantage of JSP over Servlets
8. Snapshots of the project
9. References
ABOUT KAN SOFTWARE
• KAN Software is a software development and IT
outsourcing company in Udaipur started in 1999. KAN
Software, mainly a software consulting firm provides
ERPs and business solutions to various sectors across the
globe.
• KAN Software specialize in the development of custom
software applications and software outsourcing services.
Specifically, company carries out custom programming,
database design and software application development .
• Its motto is that nothing more is essential to ensure
customer delight than quality.
HTML
• HTML is a Hyper Text Markup Language .
• A markup language is a set of markup tags.
• HTML documents are described by HTML tags
• HTML elements are written with a start tag, with
an end tag, with the content in between
• HTML elements can have attributes
• Attributes provide additional information about an
element
• Each HTML tag describes different document
content.
CSS
• CSS stands for Cascading Style Sheets
• CSS describes how HTML elements are to be
displayed on screen, paper, or in other media
• CSS saves a lot of work. It can control the layout of
multiple web pages all at once
• Types of CSS
▫ Inline
▫ Internal
▫ external
INTRODUCTION TO SEVLETS
• A java servlet is a java class extending HTTPServlet
class
• A java servlet class implements the doGet(), doPost()
or other equivalent HTTP method and (usually) prints
at the standard output an html file
• A java servlet class can contain any kind of java code
the JDK can compile
Servlet Life Cycle
The web container
maintains the life
cycle of a servlet
instance
• Servlet class is loaded.
• Servlet instance is created.
• Init method is invoked.
• Service method is invoked.
• Destroy method is invoked.
The classloader
is responsible to
load the servlet
class.
The servlet class
is loaded when
the first request
for the servlet is
received by the
web container.
The web
container creates
the instance of a
servlet after loading
the servlet class.
The servlet instance
is created only once
in the servlet life
cycle.
The web container calls the
init method only once after
creating the servlet
instance.
The init method is used to
initialize the servlet. It is
the life cycle method of the
javax.servlet.Servlet
interface.
Syntax of the init method
is given below:
public void init(Servlet
Config config) throws S
ervletException
The web container calls the service
method each time when request for
the servlet is received.
If servlet is not initialized, it follows
the first three steps as described
above then calls the service method.
If servlet is initialized, it calls the
service method.
Notice that servlet is initialized
only once.
The syntax of the service method of
the Servlet interface is given below:
public void service(ServletRequ
est request, ServletResponse res
ponse) throws ServletException
, IOException
The web container calls the
destroy method before
removing the servlet
instance from the service.
It gives the servlet an
opportunity to clean up
any resource for example
memory, thread etc.
The syntax of the destroy
method of the Servlet
interface is given below:
public void destroy()
JAVA SERVER PAGES(JSP)
• JSP technology is used to create web application just
like Servlet technology. It can be thought of as an
extension to the servlet because it provides more
functionality than servlet.
• A JSP page contains HTML code and JSP tags. The
jsp pages are easier to maintain than servlet because
we can separate designing and development. It
provides some additional features such as Expression
Language, Custom Tag etc.
JSP Scripting Element
• The scripting elements provides the ability to insert
java code inside the jsp. There are three types of
scripting elements:
• Scripting elements:
1. scriptlet tag
2. expression tag
3. declaration tag
Advantage of JSP over Servlet
• JSP is the extension to the servlet technology. We can use all
the features of Servlet in JSP.
• In addition to, we can use implicit objects, predefined tags,
expression language and Custom tags in JSP, that makes JSP
development easy.
• JSP can be easily managed because we can easily separate our
business logic with presentation logic. In servlet, we mix our
business logic with the presentation logic.
• If JSP page is modified, we don't need to redeploy the project.
The servlet code needs to be updated and recompiled if we
have to change the look and feel of the application.
PROJECT BRIEF
The goals of our system are:
• To provide a anytime anyplace service for the
customer
• To minimize the number of staff at the ticket box
• To promote the film on the internet
• To increase the profit
SNAPSHOTS OF THE PROJECT
LOGIN PAGE
SIGN UP PAGE
ABOUT US PAGE
DATABASE-MYSQL
REFERENCES
• <http://docs.oracle.com/javaee/6/tutorial/doc/bnafd.ht
ml>
• Database Programming with JDBC & Java by
George Reese.
• <http://www.tutorialspoint.com/servlets>
• <http://www.w3schools.com/ajax/>
• The Complete Reference by Herbert Schildt.
Online Movie Ticket Booking Website by Pragya Jain

Weitere ähnliche Inhalte

Was ist angesagt?

Qa 00501--online ticket-booking_pvr_cinemas
Qa 00501--online ticket-booking_pvr_cinemasQa 00501--online ticket-booking_pvr_cinemas
Qa 00501--online ticket-booking_pvr_cinemassokkary
 
Onlinemovieticketbooking 120215060739-phpapp02
Onlinemovieticketbooking 120215060739-phpapp02Onlinemovieticketbooking 120215060739-phpapp02
Onlinemovieticketbooking 120215060739-phpapp02ISHA AHUJA
 
Movie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project PresentationMovie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project PresentationAvinandan Ganguly
 
Project report cinema
Project report cinemaProject report cinema
Project report cinemajaspaljb
 
Online movie booking synopsis
Online movie booking  synopsisOnline movie booking  synopsis
Online movie booking synopsismca projects
 
Online Movie ticket booking Project
Online Movie ticket booking ProjectOnline Movie ticket booking Project
Online Movie ticket booking ProjectSHAZIA JAMALI
 
Online movie ticket booking system
Online movie ticket booking systemOnline movie ticket booking system
Online movie ticket booking systemSikandar Pandit
 
게임 스토리 텔링이란
게임 스토리 텔링이란게임 스토리 텔링이란
게임 스토리 텔링이란sinnoske
 
Airline Reservation System - Software Engineering
Airline Reservation System - Software EngineeringAirline Reservation System - Software Engineering
Airline Reservation System - Software EngineeringDrishti Bhalla
 
Online reservation system project report(web development)
Online reservation system project report(web development)Online reservation system project report(web development)
Online reservation system project report(web development)Prachiverma50
 
Enterprise java unit-1_chapter-1
Enterprise java unit-1_chapter-1Enterprise java unit-1_chapter-1
Enterprise java unit-1_chapter-1sandeep54552
 
Software requirement specification
Software requirement specificationSoftware requirement specification
Software requirement specificationAmit Gandhi
 
Online travel booikng
Online travel booikngOnline travel booikng
Online travel booikngsanket shah
 
Local Service Search Engine Management System LSSEMS
Local Service Search Engine Management System LSSEMSLocal Service Search Engine Management System LSSEMS
Local Service Search Engine Management System LSSEMSYogeshIJTSRD
 
SRS For Online Store
SRS For Online StoreSRS For Online Store
SRS For Online StoreAhsan Rizwan
 
Game Design Document - Step by Step Guide
Game Design Document - Step by Step GuideGame Design Document - Step by Step Guide
Game Design Document - Step by Step GuideDevBatch Inc.
 

Was ist angesagt? (20)

Qa 00501--online ticket-booking_pvr_cinemas
Qa 00501--online ticket-booking_pvr_cinemasQa 00501--online ticket-booking_pvr_cinemas
Qa 00501--online ticket-booking_pvr_cinemas
 
Onlinemovieticketbooking 120215060739-phpapp02
Onlinemovieticketbooking 120215060739-phpapp02Onlinemovieticketbooking 120215060739-phpapp02
Onlinemovieticketbooking 120215060739-phpapp02
 
Movie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project PresentationMovie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project Presentation
 
Project report cinema
Project report cinemaProject report cinema
Project report cinema
 
Online movie booking synopsis
Online movie booking  synopsisOnline movie booking  synopsis
Online movie booking synopsis
 
movie.pptx
movie.pptxmovie.pptx
movie.pptx
 
Online Movie ticket booking Project
Online Movie ticket booking ProjectOnline Movie ticket booking Project
Online Movie ticket booking Project
 
Project plan
Project planProject plan
Project plan
 
Online movie ticket booking system
Online movie ticket booking systemOnline movie ticket booking system
Online movie ticket booking system
 
게임 스토리 텔링이란
게임 스토리 텔링이란게임 스토리 텔링이란
게임 스토리 텔링이란
 
Airline Reservation System - Software Engineering
Airline Reservation System - Software EngineeringAirline Reservation System - Software Engineering
Airline Reservation System - Software Engineering
 
Online reservation system project report(web development)
Online reservation system project report(web development)Online reservation system project report(web development)
Online reservation system project report(web development)
 
Jsp
JspJsp
Jsp
 
Enterprise java unit-1_chapter-1
Enterprise java unit-1_chapter-1Enterprise java unit-1_chapter-1
Enterprise java unit-1_chapter-1
 
Software requirement specification
Software requirement specificationSoftware requirement specification
Software requirement specification
 
Online travel booikng
Online travel booikngOnline travel booikng
Online travel booikng
 
Local Service Search Engine Management System LSSEMS
Local Service Search Engine Management System LSSEMSLocal Service Search Engine Management System LSSEMS
Local Service Search Engine Management System LSSEMS
 
SRS For Online Store
SRS For Online StoreSRS For Online Store
SRS For Online Store
 
Game Design Document - Step by Step Guide
Game Design Document - Step by Step GuideGame Design Document - Step by Step Guide
Game Design Document - Step by Step Guide
 
EJB .
EJB .EJB .
EJB .
 

Ähnlich wie Online Movie Ticket Booking Website by Pragya Jain

Ppt for Online music store
Ppt for Online music storePpt for Online music store
Ppt for Online music storeADEEBANADEEM
 
Enterprise java unit-3_chapter-1-jsp
Enterprise  java unit-3_chapter-1-jspEnterprise  java unit-3_chapter-1-jsp
Enterprise java unit-3_chapter-1-jspsandeep54552
 
Servlets and jsp pages best practices
Servlets and jsp pages best practicesServlets and jsp pages best practices
Servlets and jsp pages best practicesejjavies
 
Project First presentation about introduction to technologies to be used
Project First presentation about introduction to technologies to be usedProject First presentation about introduction to technologies to be used
Project First presentation about introduction to technologies to be usedarya krazydude
 
Java Training in Chennai
Java Training in Chennai Java Training in Chennai
Java Training in Chennai raj esaki
 
Struts 2-overview2
Struts 2-overview2Struts 2-overview2
Struts 2-overview2Long Nguyen
 
JavaScript, often abbreviated as JS, is a programming language and core techn...
JavaScript, often abbreviated as JS, is a programming language and core techn...JavaScript, often abbreviated as JS, is a programming language and core techn...
JavaScript, often abbreviated as JS, is a programming language and core techn...MathivananP4
 
Advance java session 2
Advance java session 2Advance java session 2
Advance java session 2Smita B Kumar
 
Java Training at Gateway Software Solutions,Coimbatore
Java Training at Gateway Software Solutions,CoimbatoreJava Training at Gateway Software Solutions,Coimbatore
Java Training at Gateway Software Solutions,CoimbatoreGateway Software Solutions
 
Lecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.pptLecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.pptKalsoomTahir2
 

Ähnlich wie Online Movie Ticket Booking Website by Pragya Jain (20)

Ppt for Online music store
Ppt for Online music storePpt for Online music store
Ppt for Online music store
 
Enterprise java unit-3_chapter-1-jsp
Enterprise  java unit-3_chapter-1-jspEnterprise  java unit-3_chapter-1-jsp
Enterprise java unit-3_chapter-1-jsp
 
Devjyotippt
DevjyotipptDevjyotippt
Devjyotippt
 
Wt unit 4
Wt unit 4Wt unit 4
Wt unit 4
 
Java part 3
Java part  3Java part  3
Java part 3
 
Java Server Pages
Java Server PagesJava Server Pages
Java Server Pages
 
Advance java1.1
Advance java1.1Advance java1.1
Advance java1.1
 
Jsp abes new
Jsp abes newJsp abes new
Jsp abes new
 
Servlets and jsp pages best practices
Servlets and jsp pages best practicesServlets and jsp pages best practices
Servlets and jsp pages best practices
 
Project First presentation about introduction to technologies to be used
Project First presentation about introduction to technologies to be usedProject First presentation about introduction to technologies to be used
Project First presentation about introduction to technologies to be used
 
Jsp basic
Jsp basicJsp basic
Jsp basic
 
Java Training in Chennai
Java Training in Chennai Java Training in Chennai
Java Training in Chennai
 
Struts 2-overview2
Struts 2-overview2Struts 2-overview2
Struts 2-overview2
 
JavaScript, often abbreviated as JS, is a programming language and core techn...
JavaScript, often abbreviated as JS, is a programming language and core techn...JavaScript, often abbreviated as JS, is a programming language and core techn...
JavaScript, often abbreviated as JS, is a programming language and core techn...
 
Java Server Pages
Java Server PagesJava Server Pages
Java Server Pages
 
Advance java session 2
Advance java session 2Advance java session 2
Advance java session 2
 
Java Training at Gateway Software Solutions,Coimbatore
Java Training at Gateway Software Solutions,CoimbatoreJava Training at Gateway Software Solutions,Coimbatore
Java Training at Gateway Software Solutions,Coimbatore
 
Lecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.pptLecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.ppt
 
Wt unit 3 server side technology
Wt unit 3 server side technologyWt unit 3 server side technology
Wt unit 3 server side technology
 
Wt unit 3 server side technology
Wt unit 3 server side technologyWt unit 3 server side technology
Wt unit 3 server side technology
 

Kürzlich hochgeladen

The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about usDynamic Netsoft
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Active Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfActive Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfCionsystems
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 

Kürzlich hochgeladen (20)

The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about us
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Active Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfActive Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdf
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 

Online Movie Ticket Booking Website by Pragya Jain

  • 1. PRESENTED BY Pragya Jain 120283 CS-D(116) JAVA ADVANCED ONLINE MOVIE TICKET BOOKING WEBSITE
  • 2. CONTENTS 1. About Kan Software 2. HTML 3. CSS 4. Introduction to Servlets 5. Servlet Life Cycle 6. Brief about JSP 7. Advantage of JSP over Servlets 8. Snapshots of the project 9. References
  • 3. ABOUT KAN SOFTWARE • KAN Software is a software development and IT outsourcing company in Udaipur started in 1999. KAN Software, mainly a software consulting firm provides ERPs and business solutions to various sectors across the globe. • KAN Software specialize in the development of custom software applications and software outsourcing services. Specifically, company carries out custom programming, database design and software application development . • Its motto is that nothing more is essential to ensure customer delight than quality.
  • 4. HTML • HTML is a Hyper Text Markup Language . • A markup language is a set of markup tags. • HTML documents are described by HTML tags • HTML elements are written with a start tag, with an end tag, with the content in between • HTML elements can have attributes • Attributes provide additional information about an element • Each HTML tag describes different document content.
  • 5. CSS • CSS stands for Cascading Style Sheets • CSS describes how HTML elements are to be displayed on screen, paper, or in other media • CSS saves a lot of work. It can control the layout of multiple web pages all at once • Types of CSS ▫ Inline ▫ Internal ▫ external
  • 6. INTRODUCTION TO SEVLETS • A java servlet is a java class extending HTTPServlet class • A java servlet class implements the doGet(), doPost() or other equivalent HTTP method and (usually) prints at the standard output an html file • A java servlet class can contain any kind of java code the JDK can compile
  • 7. Servlet Life Cycle The web container maintains the life cycle of a servlet instance • Servlet class is loaded. • Servlet instance is created. • Init method is invoked. • Service method is invoked. • Destroy method is invoked. The classloader is responsible to load the servlet class. The servlet class is loaded when the first request for the servlet is received by the web container. The web container creates the instance of a servlet after loading the servlet class. The servlet instance is created only once in the servlet life cycle. The web container calls the init method only once after creating the servlet instance. The init method is used to initialize the servlet. It is the life cycle method of the javax.servlet.Servlet interface. Syntax of the init method is given below: public void init(Servlet Config config) throws S ervletException The web container calls the service method each time when request for the servlet is received. If servlet is not initialized, it follows the first three steps as described above then calls the service method. If servlet is initialized, it calls the service method. Notice that servlet is initialized only once. The syntax of the service method of the Servlet interface is given below: public void service(ServletRequ est request, ServletResponse res ponse) throws ServletException , IOException The web container calls the destroy method before removing the servlet instance from the service. It gives the servlet an opportunity to clean up any resource for example memory, thread etc. The syntax of the destroy method of the Servlet interface is given below: public void destroy()
  • 8. JAVA SERVER PAGES(JSP) • JSP technology is used to create web application just like Servlet technology. It can be thought of as an extension to the servlet because it provides more functionality than servlet. • A JSP page contains HTML code and JSP tags. The jsp pages are easier to maintain than servlet because we can separate designing and development. It provides some additional features such as Expression Language, Custom Tag etc.
  • 9. JSP Scripting Element • The scripting elements provides the ability to insert java code inside the jsp. There are three types of scripting elements: • Scripting elements: 1. scriptlet tag 2. expression tag 3. declaration tag
  • 10. Advantage of JSP over Servlet • JSP is the extension to the servlet technology. We can use all the features of Servlet in JSP. • In addition to, we can use implicit objects, predefined tags, expression language and Custom tags in JSP, that makes JSP development easy. • JSP can be easily managed because we can easily separate our business logic with presentation logic. In servlet, we mix our business logic with the presentation logic. • If JSP page is modified, we don't need to redeploy the project. The servlet code needs to be updated and recompiled if we have to change the look and feel of the application.
  • 11. PROJECT BRIEF The goals of our system are: • To provide a anytime anyplace service for the customer • To minimize the number of staff at the ticket box • To promote the film on the internet • To increase the profit
  • 12. SNAPSHOTS OF THE PROJECT
  • 17. REFERENCES • <http://docs.oracle.com/javaee/6/tutorial/doc/bnafd.ht ml> • Database Programming with JDBC & Java by George Reese. • <http://www.tutorialspoint.com/servlets> • <http://www.w3schools.com/ajax/> • The Complete Reference by Herbert Schildt.