展开 HelloWeb project 节点可以看到 netbeans 已经建立了一个 indexjsp 的文件
双击 indexjsp 文件将在 Source Editor 展开它的源代码
在右侧的 Palette 中展开 HTML Forms 然后将 Form 拖到 < h > 之后
设置以下参数
Action: responsejsp
Method: post
Name: Name Input Form
单击OK完成form的插入
将 Text Input 拖入到 < /form > 之前
设置一下参数
Name: name
Type: text
单击 OK 完成 Text Input 的插入
将 Button 拖入到 < /form > 之前
设置一下参数
Label: OK
Type: submit
单击 OK 完成 Button 的插入
在 < input > 插入 Enter your name 将 < h > 标签之间的文字改为 Entry Form
在 < body > 标签之间的代码类似如下
<h
>Entry Form</h
>
<form name=Name Input Form action=responsejsp method=POST>
Enter your name: <input type=text name=name value= />
<input type=submit value=OK />
</form>
建立 responsejsp 文件
右键单击 Web Pages 依次点击 New > JSP 将其命名为 responsejsp 然后点击 OK
在右侧的 Palette 中展开 JSP 然后将 Use Bean 拖到 之后设置以下参数
ID: mybean
Class: orgmehelloNameHandler
Scope: session
单击 OK 完成 Use Bean 的插入
同理将 Get Bean Property 和 Set Bean Property 插入代码类似如下
<jsp:useBean id=
mybean
scope=
session
class=
org
me
hello
NameHandler
/>
<jsp:setProperty name=mybean property=* />
<h>Hello <jsp:getProperty name=mybean property=name />!</h>
生成并运行 Web Application 工程
按 f netbeans 将编译运行并部署以上代码文件
在 indexjsp 中输入名字然后单击 OK
[] []