Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Warning

This is deprecated information!

Contents

Table of Contents
maxLevel3

Your First Project

Creating a New Project

  1. Install WOLips
    Follow the instructions here, : The WOLips Installation Tutorial, to install WOLips on your machine. Although many people, including myself can't seem to do without the "Wonder"ful features of Project Wonder,
    Info
    titleProject Wonder

    Once you get the general idea of how a WebObjects application is setup, you'll want to add the incredibly powerful Project Wonder to any new application you start, but for the purposes of this tutorial, it is not necessary.

  2. Open the
    WoLips
    WOLips perspective.
    From the Window menu select: Open Perspective > Other... > WOLips
  3. Create the Project
    From the File menu, select New > WebObjects Application.
  4. The New WebObjects Project Wizard
    The wizard is displayed. Enter a name for your project such as MyFirstApp. Then click Next.
    Figure 1-1 The New WebObjects Project Assistant

...

  1. Image Modified
  2. Change
    only the word "your" in the Application screen to myfirstapp. I think you can change it to whatever you want, or just keep it "your," but I like to put in the actual Application name
    the default packages, if you want. In the rest of this tutorial I will refer to the packages as your.app and your.app.component.
    Click Finish
    Once you are done, click Finish (you don't need to worry about the other options for now).

...

Figure 1-2 The New WebObjects Project Assistant

...

Get familiar with your project's organization

In the left pane entitled WO Package Explorer, you will see a folder icon with your applications name. Click on the triangle next to your application's folder to see the organization of your project.

Note
Non-Eclipse-Standard Java Project Directory Names
Non-Eclipse-Standard Java Project Directory Names

The directory names outlined below are important because the ant build process for a WebObjects project assumes this naming convention. There's nothing to stop you calling those groups by other names like src, rez, web, woc, etc., but then you'd need to change a lot of other stuff too, so don't – it's not worth it.

...

Figure 1-3 The WOLips Perspective in Eclipse

...

    • Sources

...

    • This group contains initially contains two packages your.app and your.app.components. The your.app package contains .java files for the Application, Session, and DirectAction classes. You can customize your application by putting your own code in these files. You can also add other classes to your project. The your.app.components package contains the .java for the Main component that was automatically generated. Component classes are used to define the behavior of each component.
    • WebObjects Frameworks and JRE System Library

...

    • This group contain references to the Frameworks and Libraries necessary to run WebObjects applications. Every WebObjects application depends on at least the JavaWebObjects framework, which contains the essential code behind WebObjects. Later, we will show you how to add other Frameworks to your project for more functionality.
    • build

...

    • This group contains the compiled files generated by Ant and are your executable files. You should not have to go in here.
    • Components

...

    • Initially, the Components group contains two files, Main API and Main WO. We will mostly concern ourselves with Main WO. When you click on Main WO, all the files (including Main API and Main.java) related to the Main component are listed in a Related tab in the lower left of your screen. All of these related files together define how your components will look and work.
    • Resources

...

    • This location typically stores files that your application will need at run-time. Also, Enterprise Object model files are stored here.

...

    • WebServerResources
      For many reasons, you want to store static information such as graphics, sounds, and movies as well as javascript and CSS files outside the WebObjects Application in a location that the web server can access directly. Delivering these static resources directly, without your application being involved, is much faster than if WebObjects was involved; also other applications or static web pages can access the same information.
Info
titleThe Fluffy Bunny

This naming scheme ("Sources", "Resources", "WebServerResources", "Components", ...) is referred to as the "Fluffy Bunny" naming. This origins of this appellation are lost in the mists of time, but it is referred to in many places and it's good to know what on earth people are talking about!

Running the Project

Without doing anything else, you have a WebObjects application ready to run. Select Run as... WOApplication by right-clicking on your Project folder or clicking on your project folder and then selecting Run from the menu bar.

...

As a note, when you are done testing an app, make sure you stop it by clicking the red square in the console window at the bottom of the Eclipse window. If you forget and try to run the app again you may get errors.

Editing a Component

Well "Hello World" is about as boring a web page as one can make. So feel free to change it. In your project's Components window, you can edit the HTML of your component by double-clicking the component itself or it's related HTML file.

...

Figure 1-5 WOLips Component Editor


 

Let's Make It Dyanamic

Well, there are certainly easier ways of making static web pages and using WebObjects for that purpose would defeat the purpose of developing using WebObjects. So let's start to learn how to make our pages a little more dynamic.

A WebObjects Component

As mentioned before, the looks and functionality of a WebObjects component are defined by several files:

...

XCode's one redeeming feature regarding WebObjects was the WebObjects Builder. It allowed, in my opinion, the developer to quickly "wire-up" the HTML file. While editing, the HTML file, you could easily access methods and variables in the related Java file including the getter and setter methods, and quickly bind them to the component in the HTML document by clicking and dragging. In WOLips, this must all be done a bit more manually. As of OS X 10.5, WOBuilder is longer supported, but there is a movement to get an WOBuilder replacement project started.

The Main Component

Every WebObjects application includes a Main component by default. The HTML file is mostly empty except for "Hello World." Likewise, the Java file contains very little. We will learn how to add methods and variables to the component.

Adding Methods

Let's start by editing the Main.java file.

...