﻿WEBVTT

1
00:00:01.401 --> 00:00:02.327
<v ->Hi.</v>

2
00:00:02.327 --> 00:00:04.099
In this video I'm gonna show you

3
00:00:04.099 --> 00:00:07.766
how to build a Hello World program with JSF.

4
00:00:09.854 --> 00:00:12.078
Alright, so before we start coding,

5
00:00:12.078 --> 00:00:14.934
let's just perform a development environment check point.

6
00:00:14.934 --> 00:00:17.372
At this point in the video series,

7
00:00:17.372 --> 00:00:20.062
you should have installed Apache Tomcat,

8
00:00:20.062 --> 00:00:22.216
Eclipse, the Jave EE version,

9
00:00:22.216 --> 00:00:25.316
and you also should have connected Eclipse to Tomcat.

10
00:00:25.316 --> 00:00:26.930
Now, if you haven't done this yet,

11
00:00:26.930 --> 00:00:28.871
please go back to the previous videos

12
00:00:28.871 --> 00:00:30.619
and follow those steps.

13
00:00:30.619 --> 00:00:31.935
You'll need to have all of this in place

14
00:00:31.935 --> 00:00:36.102
before you can actually build a Hello World program.

15
00:00:37.080 --> 00:00:38.421
We're gonna create a very simple

16
00:00:38.421 --> 00:00:40.644
Hello World program with JSF.

17
00:00:40.644 --> 00:00:43.163
What we're gonna do is start with an xhtml form

18
00:00:43.163 --> 00:00:45.613
that's gonna prompt the user for their name.

19
00:00:45.613 --> 00:00:47.909
They'll type in their name, they'll hit submit.

20
00:00:47.909 --> 00:00:52.205
Then we'll have a second page called myresponse.xhtml

21
00:00:52.205 --> 00:00:53.667
and it's simply gonna say Hello,

22
00:00:53.667 --> 00:00:55.516
whatever the user's name is.

23
00:00:55.516 --> 00:00:57.499
So, again, very simple application.

24
00:00:57.499 --> 00:00:59.518
It's gonna make use of two files:

25
00:00:59.518 --> 00:01:02.227
an input form and a simple response page,

26
00:01:02.227 --> 00:01:03.338
and that's it.

27
00:01:03.338 --> 00:01:04.738
Alright, so I'm excited about this.

28
00:01:04.738 --> 00:01:06.000
Let's go ahead and get started.

