Java Servlet and JSP: Build a Tweet Web App
Java Servlet and JSP: Build a Tweet Web App, available at $29.99, has an average rating of 4.5, with 11 lectures, based on 26 reviews, and has 4069 subscribers.
You will learn about Understand basic servlet and JSP knowledge including advanced contents, such as “MVC model”, “Request scope”, “Session scope”, “Application scope” Be able to develop simple web app based on servlet and JSP knowledge This course is ideal for individuals who are IT engineer want to acquire basic servlet and JSP knowledge to develop web app on the job or IT engineer already studied Java basic programming, but have difficulty in studying advanced knowledge(servlet and JSP) It is particularly useful for IT engineer want to acquire basic servlet and JSP knowledge to develop web app on the job or IT engineer already studied Java basic programming, but have difficulty in studying advanced knowledge(servlet and JSP).
Enroll now: Java Servlet and JSP: Build a Tweet Web App
Summary
Title: Java Servlet and JSP: Build a Tweet Web App
Price: $29.99
Average Rating: 4.5
Number of Lectures: 11
Number of Published Lectures: 11
Number of Curriculum Items: 11
Number of Published Curriculum Objects: 11
Original Price: $64.99
Quality Status: approved
Status: Live
What You Will Learn
- Understand basic servlet and JSP knowledge including advanced contents, such as “MVC model”, “Request scope”, “Session scope”, “Application scope”
- Be able to develop simple web app based on servlet and JSP knowledge
Who Should Attend
- IT engineer want to acquire basic servlet and JSP knowledge to develop web app on the job
- IT engineer already studied Java basic programming, but have difficulty in studying advanced knowledge(servlet and JSP)
Target Audiences
- IT engineer want to acquire basic servlet and JSP knowledge to develop web app on the job
- IT engineer already studied Java basic programming, but have difficulty in studying advanced knowledge(servlet and JSP)
This course’s target and goal is as follows
Target
-
IT engineer want to acquire basic servlet and JSP knowledge to develop web app on the job
-
IT engineer already studied Java basic programming, but have difficulty in studying advanced knowledge(servlet and JSP)
Goal
-
Understand basic servlet and JSP knowledge including advanced contents,
such as “MVC model”, “Request scope”, “Session scope”, “Application scope”
-
Be able to develop simple web app based on servlet and JSP knowledge
This course’s table contents is as follows
2 HTML and Web page
2.1 Web page and HTML
2.1.1 Basic knowledge of web application development
2.1.2 HTML and web browser
2.2 HTML basic syntax
2.2.1 What is tag?
2.2.2 Attribute
2.2.3 HTML basic structure
2.3 Make web page
2.3.1 Basic tag
2.3.2 Procedure to make web page and rule
2.3.3 Make HTML file
2.3.4 Display web page based on HTML file
2.3.5 In case of wrong display (blank)
2.3.6 In case of wrong display (character corruption)
2.4 HTML reference
2.4.1 HTML reference
2.5 Chapter summary
3 Web mechanism
3.1 Web page open to the public
3.1.1 How to release web page
3.1.2 Necessity for request
3.2 Mechanism of transportation on web
3.2.1 What is HTTP?
3.2.2 Contents of request
3.2.3 Contents of response
3.3 Mechanism of web application
3.3.1 Web application
3.3.2 Server side program
3.3.3 Web application development by servlet and JSP
3.3.4 What is application server?
3.4 Prepare for development
3.4.1 Necessity for development
3.4.2 Prepare for development
3.5 Use development environment
3.5.1 Procedure to use development environment
3.5.2 Make HTML file by Eclipse
3.5.3 Start application server
3.5.4 Request and URL
3.5.3 Http status code 404
3.5.4 Eclipse execution function
3.6 Chapter summary
4 Servlet fundamentals
4.1 Servlet fundamentals and coding method
4.1.1 What is servlet?
4.1.2 Rule to code servlet class
4.1.3 HttpServletRequest and HttpServletResponse
4.1.4 Output HTML
4.1.5 Compile and make instance of servlet class
4.2 Servlet class execution method
4.2.1 Servlet class URL
4.2.2 Setting of URL pattern
4.2.3 Execute servlet class
4.2.4 Request method and execution method
4.3 Coding servlet class and execute it
4.3.1 Define servlet class by Eclipse
4.3.2 Execute servlet class
4.4 Servlet’s remarks
4.4.1 Remark in case of changing contents of servlet class
4.4.2 Servlet’s basic learning method
4.4.3 Servlet class API document
4.5 Chapter summary
5 JSP fundamentals
5.1 JSP fundamentals
5.1.1 What is JSP?
5.2 JSP Scripting elements
5.2.1 JSP Scripting elements
5.2.2 Scriptlet
5.2.3 Expression
5.2.4 JSP comment
5.2.5 Page directive
5.2.6 Page directive – Set Content-Type header –
5.2.7 Page directive – Import class and interface –
5.3 JSP file execution method
5.3.1 JSP file URL
5.4 How to make JSP file and execute it
5.4.1 Make JSP file by Eclipse
5.4.2 Execute JSP file
5.4.3 Http status code 500
5.5 Chapter summary
6 Form
6.1 Form fundamentals
6.1.1 What is form?
6.1.2 Form structure
6.1.3 Form component
6.1.4 Make form
6.1.5 Mechanism to send data
6.1.6 GET request and POST request
6.2 Get request parameter
6.2.1 Request parameter and HttpServletRequest instance
6.2.2 Get request parameter value by servlet class
6.2.3 Get request parameter value by JSP file
6.3 Programming using form
6.3.1 Explanation of sample program
6.3.2 Make sample program
6.4 Advanced method of request parameter
6.4.1 Send data to program
6.5 Chapter summary
7 MVC model and process transition
7.1 MVC model
7.1.1 Pros and cons of servlet class and JSP file
7.1.2 What is MVC model?
7.2 Transfer process
7.2.1 What is forward method?
7.2.2 Forward method’s feature
7.2.3 Prohibit direct request to JSP file
7.2.4 Make sample program using forward method
7.2.5 What is redirect method?
7.2.6 Redirect method’s feature
7.2.7 Make sample program using redirect method
7.2.8 Difference between forward method and redirect method
7.2.9 URL difference after forwarding
7.2.10 Difference between forward and redirect
7.3 Chapter summary
8 Request scope
8.1 Scope fundamentals
8.1.1 What is scope?
8.1.2 Scope and instance
8.1.3 JavaBeans sample program
8.1.3 JavaBeans property
8.2 Request scope fundamentals
8.2.1 Request scope feature
8.2.2 Request scope basic operation
8.2.3 Example of using request scope by JSP file
8.3 Make sample program using request scope
8.3.1 Explanation of sample program
8.3.2 Make sample program
8.4 Remark of request scope
8.4.1 Regulation using request scope
8.5 Chapter summary
9 Session scope
9.1 Session scope fundamentals
9.1.1 Session scope feature
9.1.2 Session scope basic operation
9.2 Make sample program using Session scope
9.2.1 Explanation of sample program
9.2.2 Divide process by request parameter
9.2.3 Make sample program
9.3 Mechanism of session scope
9.3.1 Session ID
9.3.2 Session ID and cookie
9.4 Remark of Session scope
9.4.1 Session timeout
9.4.2 Delete session scope and instance
9.4.3 Stateful and stateless
9.4.4 Session scope and serializable
9.5 Chapter summary
10 Application scope
10.1 Application scope fundamentals
10.1.1 Application scope feature
10.1.2 Application scope start and end
10.1.3 Application scope basic operation
10.2 Make sample program using application scope
10.2.1 Explanation of sample program
10.2.2 Make sample program
10.3 Remark of application scope
10.3.1 Incident using application scope
10.4 Scope feature
10.4.1 Scope feature summary
10.5 Chapter summary
11 Develop tweet web app
11.1 Tweet web app function and operation
11.1.1 Tweet web app function and screen design
11.1.2 Preconditions for developing tweet web app
11.2 Development preparation
11.2.1 Make dynamic web project
11.2.2 Make JavaBeans
11.2.3 Make top screen
11.2.4 Default page
11.3 Develop login function
11.3.1 Mechanism of login function
11.3.2 Make program
11.4 Display main screen
11.4.1 Mechanism of main screen display
11.4.2 Make program
11.5 Develop logout function
11.5.1 Mechanism of logout function
11.5.2 Make program
11.6 Develop writing and reading function
11.6.1 Mechanism of writing and reading function
11.6.2 Make program
11.7 Develop error message display function
11.7.1 Mechanism of error message display function
11.7.2 Make program
11.8 Chapter summary
Finally, thank you for enrolling this course. Let’s start learning “Java Servlet and JSP: Build a Tweet Web App”!
Course Curriculum
Chapter 1: Introduction
Lecture 1: Course Introduction
Chapter 2: HTML and Web page
Lecture 1: HTML and Web page
Chapter 3: Web mechanism
Lecture 1: Web mechanism
Chapter 4: Servlet fundamentals
Lecture 1: Servlet fundamentals
Chapter 5: JSP fundamentals
Lecture 1: JSP fundamentals
Chapter 6: Form
Lecture 1: Form
Chapter 7: MVC model and process transition
Lecture 1: MVC model and process transition
Chapter 8: Request scope
Lecture 1: Request scope
Chapter 9: Session scope
Lecture 1: Session scope
Chapter 10: Application scope
Lecture 1: Application scope
Chapter 11: Develop tweet web app
Lecture 1: Develop tweet web app
Instructors
-
Shota Fukuyama
Full-stack development, Cloud computing and DevOps
Rating Distribution
- 1 stars: 1 votes
- 2 stars: 0 votes
- 3 stars: 4 votes
- 4 stars: 5 votes
- 5 stars: 16 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Language Learning Courses to Learn in November 2024
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024