The Java EE 6 Tutorial

Building, Packaging, Deploying, and Running the guessnumber CDI Example

You can build, package, deploy, and run the guessnumber application by using either NetBeans IDE or the Ant tool.

ProcedureTo Build, Package, and Deploy the guessnumber Example Using NetBeans IDE

This procedure builds the application into the following directory:


tut-install/examples/cdi/guessnumber/build/web

The contents of this directory are deployed to the GlassFish Server.

  1. In NetBeans IDE, select File->Open Project.

  2. In the Open Project dialog, navigate to:


    tut-install/examples/cdi/
    
  3. Select the guessnumber folder.

  4. Select the Open as Main Project check box.

  5. Click Open Project.

  6. In the Projects tab, right-click the guessnumber project and select Deploy.

ProcedureTo Build, Package, and Deploy the guessnumber Example Using Ant

  1. In a terminal window, go to:


    tut-install/examples/cdi/guessnumber/
  2. Type the following command:


    ant
    

    This command calls the default target, which builds and packages the application into a WAR file, guessnumber.war, located in the dist directory.

  3. Type the following command:


    ant deploy
    

    The guessnumber.war file will be deployed to the GlassFish Server.

ProcedureTo Run the guessnumber Example

  1. In a web browser, type the following URL:


    http://localhost:8080/guessnumber
    

    The Guess My Number page opens, as shown in Figure 19–2.

    Figure 19–2 Guess My Number Example

    Guess Number example at beginning of game

  2. Type a number in the Number text field and click Guess.

    The minimum and maximum values are modified, along with the remaining number of guesses.

  3. Keep guessing numbers until you get the right answer or run out of guesses.

    If you get the right answer, the input field and Guess button are grayed out, as shown in Figure 19–3.

    Figure 19–3 Guess My Number at End of Game

    Guess Number example at end of game

  4. Click the Reset button to play the game again with a new random number.