Introduction To Developing Web Applications - NetBeans IDE Tutorial PDF
Introduction To Developing Web Applications - NetBeans IDE Tutorial PDF
Introduction To Developing Web Applications - NetBeans IDE Tutorial PDF
22/05/13 00:08
NetBeans IDE
HOME / Docs & Support
NetBeans Platform
Plugins
Community
Partners
Search
Training
Java Programming Language
Support
Oracle Development Tools Support Offering for NetBeans IDE
Documentation
Running a Web Application Project Troubleshooting See Also To follow this tutorial, you need the following software and resources. Software or Resource NetBeans IDE Java Development Kit (JDK) Version Required 7.0, 7.1, 7.2, 7.3, Java EE version version 6 or 7 General Java Development External Tools and Services Java GUI Applications Java EE & Java Web Development Web Services Applications NetBeans Platform (RCP) and Module Development PHP and HTML5 Applications C/C++ Applications Mobile Applications Sample Applications Demos and Screencasts
GlassFish Server Open Source Edition 3.x or Tomcat servlet container or Oracle Web Logic server Notes: The Java EE installation (not Java SE!) enables you to optionally install the GlassFish server and the Apache Tomcat servlet container. If you need to compare your project with a working solution, you can download the sample application. 11gR1 (10.3.3) or later version 6.x (EE 5) or 7.x ((EE 5 or EE 6)
More
FAQs Contribute Documentation! Docs for Earlier Releases
$PROJECTHOME.
4. (Optional) Select the Use Dedicated Folder for Storing Libraries checkbox and specify the location for the libraries folder. See Sharing Project Libraries for more information on this option. 5. Click Next. The Server and Settings panel opens. Select the version of Java EE you want to use with your application. 6. Select the server to which you want to deploy your application. Only servers that are registered with the IDE are listed. Note that the Context Path (i.e., on the server) becomes /HelloWeb, which is based on the name you gave the project in a previous step. 7. Click Finish. The IDE creates the $PROJECTHOME/HelloWeb project folder. You can view the project's file structure in the Files window (Ctrl-2), and its logical structure in the Projects window (Ctrl-1).
https://netbeans.org/kb/docs/web/quickstart-webapps.html
Pgina 1 de 8
22/05/13 00:08
The project folder contains all of your sources and project metadata, such as the project's Ant build script. The HelloWeb project opens in the IDE. The welcome page, index.jsp, opens in the Source Editor in the main window.
org.mypackage.hello in the Package combo box. Click Finish. Notice that the new NameHandler.java file opens in the
Source Editor. 3. In the Source Editor, declare a String variable by typing the following line directly below the class declaration.
String name;
4. Add the following constructor to the class:
public NameHandler() { }
5. Add the following line in the NameHandler() constructor:
name = null;
https://netbeans.org/kb/docs/web/quickstart-webapps.html
Pgina 2 de 8
22/05/13 00:08
2. Click Refactor. Getter and setter methods are generated for the name field. The modifier for the class variable is set to private while getter and setter methods are generated with public modifiers. The Java class should now look similar to the following.
package org.mypackage.hello; /** * * @author nbuser */ public class NameHandler { private String name; /** Creates a new instance of NameHandler */ public NameHandler() { name = null; } public String getName() { return name; } public void setName(String name) { this.name = name; } }
https://netbeans.org/kb/docs/web/quickstart-webapps.html
Pgina 3 de 8
22/05/13 00:08
4. Drag a Text Input item to a point just before the </form> tag, then specify the following values: Name: name Type: text Click OK. An HTML <input> tag is added between the <form> tags. Delete the value attribute from this tag. 5. Drag a Button item to a point just before the </form> tag. Specify the following values: Label: OK Type: submit Click OK. An HTML button is added between the <form> tags. 6. Type Enter your name: just before the first <input> tag, then change the default Hello World! text between the <h1> tags to Entry Form. 7. Right-click within the Source Editor and choose Format (Alt-Shift-F) to tidy the format of your code. Your index.jsp file should now appear similar to the following:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JSP Page</title> </head> <body> <h1>Entry Form</h1> <form name="Name Input Form" action="response.jsp"> Enter your name: <input type="text" name="name" /> <input type="submit" value="OK" /> </form> </body> </html>
https://netbeans.org/kb/docs/web/quickstart-webapps.html
Pgina 4 de 8
22/05/13 00:08
2. In the Palette to the right of the Source Editor, expand JSP and drag a Use Bean item to a point just below the <body> tag in the Source Editor. The Insert Use Bean dialog opens. Specify the values shown in the following figure.
ID: mybean Class: org.mypackage.hello.NameHandler Scope: session Click OK. Notice that the <jsp:useBean> tag is added beneath the <body> tag. 3. Drag a Set Bean Property item from the Palette to a point just before the <h1> tag and click OK. In the <jsp:setProperty> tag that appears, delete the empty value attribute and edit as follows. Delete the value = "" attribute if the IDE created it! Otherwise, it overwrites the value for name that you pass in index.jsp.
<h1>Hello, !</h1>
5. Drag a Get Bean Property item from the Palette and drop it after the comma between the <h1> tags. Specify the following values in the Insert Get Bean Property dialog: Bean Name: mybean Property Name: name Click OK. Notice that <jsp:getProperty> tag is now added between the <h1> tags. Caution: Property names are case-sensitive. The "name" property must be in the same case in response.jsp and in the input form in index.jsp. 6. Right-click within the Source Editor and choose Format (Alt-Shift-F) to tidy the format of your code. The <body> tags of your
response.jsp file should now appear similar to the following: <body> <jsp:useBean id="mybean" scope="session" class="org.mypackage.hello.NameHandler" /> <jsp:setProperty name="mybean" property="name" /> <h1>Hello, <jsp:getProperty name="mybean" property="name" />!</h1> </body>
https://netbeans.org/kb/docs/web/quickstart-webapps.html
Pgina 5 de 8
22/05/13 00:08
1. In the Projects window, right-click the HelloWeb project node and choose Run (F6). When you run a web application, the IDE performs the following steps: Building and compiling the application code (see note below). You can perform this step in isolation by selecting Build or Clean and Build from the project node context menu. Launching the server. Deploying the application to the server. You can perform this step in isolation by selecting Deploy from the project node context menu. Displaying the application in a browser window. Note: By default, the project has been created with the Compile on Save feature enabled, so you do not need to compile your code first in order to run the application in the IDE. For more information on the Compile on Save feature, see the Compile on Save section of the Creating, Importing, and Configuring Java Projects guide.
2. The IDE opens an output window that shows the progress of running the application. Look at the HelloWeb tab in the Output window. In this tab, you can follow all the steps that the IDE performs. If there is a problem, the IDE displays error information in this window.
3. The IDE opens an output window showing the server status. Look at the tab in the Output window with the name of your server. Important: If the GlassFish server fails to start, start it manually and run the project again. You can start the server manually from the Services window, by right-clicking the server node and selecting Start. The server output window is very informative about problems running Web applications. The server's logs can also be helpful. They are located in the server's relevant domain directory. You can also view the IDE log, visible by selecting View > IDE log.
4. The index.jsp page opens in your default browser. Note that the browser window may open before the IDE displays the server output.
5. Enter your name in the text box, then click OK. The response.jsp page displays, providing you with a simple greeting.
https://netbeans.org/kb/docs/web/quickstart-webapps.html
Pgina 6 de 8
22/05/13 00:08
Troubleshooting
I've built and run the project. When I click the OK button for index.jsp, an error page displays indicating that response.jsp is not available. Have you looked in the IDE's Output window (Ctrl-4) in the project tab or in the server tab? What error messages are there? What JDK does your project use? What server? JDK 7 requires GlassFish 3.x or Tomcat 7.x. Right-click the project's node in the Projects window and select Properties. The JDK is in the Libraries category, in the Java Platform field. The server version is in the Run category. Lastly, download the sample project and compare it with your own. I've built and run the project but no name appears, only "Hello, !" Does your <jsp:setProperty> tag contain a value = "" attribute? This overwrites the value you passed in the index.jsp form and replaces it with an empty string. Delete the value attribute. I've built and run the project but get "Hello, null!" First, check the IDE's Output windows for both application and server, and the server log. Is the server running? Was the application deployed? If the server is running and the application was deployed, are you getting an org.apache.jasper.JasperException:
java.lang.NullPointerException? This usually means that a value in your code is not initialized correctly. In this tutorial, it
means that you probably have a typo somewhere in a property name in your JSP files. Remember that property names are case-sensitive! Send Feedback on This Tutorial
See Also
This concludes the Introduction to Developing Web Applications tutorial. This document demonstrated how to create a simple web application using NetBeans IDE, deploy it to a server, and view its presentation in a browser. It also showed how to use JavaServer Pages and JavaBeans in your application to collect, persist, and output user data. For related and more advanced information about developing web applications in NetBeans IDE, see the following resources: Introduction to the Struts Web Framework. Describes the basics of using NetBeans IDE to develop web applications using the Struts framework. Java EE & Java Web Learning Trail
SiteMap
About Us
Contact
https://netbeans.org/kb/docs/web/quickstart-webapps.html
Pgina 7 de 8
22/05/13 00:08
https://netbeans.org/kb/docs/web/quickstart-webapps.html
Pgina 8 de 8