
Design web application |
- Go to Help > Java
BluePrints Solutions Catalog.
- Read topics under the "Web Tier Design" item. For example, read "Making Web Applications Accessible"
to find out how to support assistive technologies. Assistive technologies are useful for people with disabilities.
|
|

Create project |
- Register the target
server for your application.
- Create the project using the best template for
your programming needs. While creating the project, you can let the IDE include libraries and configuration files
for JavaServer Faces and Struts.
- Configure the classpath
for the project. You can add a JAR file, a library,
or an IDE project to
the classpath.
|
|

Create web components |
- Choose File > New File or right-click any project and choose
New > File/Folder.
- Under Categories, select Web. Under File Type, select the web component
that you would like to create.
- Click Next and follow the instructions in the wizard.
|
|

Edit web components |
- In the Projects window or Files window, double-click the web component
that you would like to edit.
- Use the Source Editor to edit the
web component.
|
|

Build web application
|
- Choose Build > Build
Main Project or right-click any project and choose Build Project.
|
|

Deploy web application
|
- Choose Run > Run Main Project or right-click any project and choose
Run Project.
|
|

Debug web application |
- Set breakpoints or
watches in your code.
- Choose Run >
Debug Main Project or
right-click any project and choose Debug Project.
You can also attach a running process
to the debugger.
- Step through the program execution.
- Choose Run > Finish
Debugging Session when you are finished debugging.
|