Getting started with Google Web Toolkit
Simple Dialog Box Example
Next, try building a simple dialog box that loads from an existing AJAX URL. Out of laziness, make sure you're importing everything from GWT's client package:
import com.google.gwt.user.client.*;
Replace the contents of onModuleLoad with:
openDialogBox();
and then add the function shown in Listing 4.
Listing 4
Add this Function
If you open this in hosted mode, the diaglog box appears when the page opens, which is a nice demo, but it isn't really useful. Instead, you want to be able to call the dialog box from anywhere in the application, and to do this, you need to expose part of the Java application to JavaScript using the JavaScript Native Interface (JSNI).
First, create a function that declares itself "native" and effectively initializes a JavaScript "API," such as the function shown in Listing 5.
Listing 5
Going Native
Finally, in onModuleLoad, replace openDialogBox() with initJavaScriptAPI():
initJavaScriptAPI(this);
If you refresh hosted mode, you'll see nothing because when the app is loaded, it only declares the JS API – a window only opens when the JavaScript function openDialog() is called. To see this work, add the following line inside the <body> in public/MyApp.html:
<a href="javascript:openDialog();">Open my GWT dialog box</a>
Then, refresh hosted mode, click the link, and watch the dialog open. Although this example is basic, it demonstrates something useful: You can now build complex, cross-browser functionality in GWT and call this functionality from your existing JavaScript applications.
Alternatives
An alternative to using GWT is to use one of the available JavaScript frameworks, such as Scriptaculous/prototype, MooTools, jQuery, or Ext JS.
These frameworks are extremely strong and have improved my JavaScript, but they don't do the the same thing as GWT. For specific, smaller (but not small) pieces of AJAX/Web 2.0 functionality, these libraries are great, but after a while, debugging, maintaining, and optimizing in a purely JavaScript environment becomes time consuming.
Using Existing AJAX Apps
The dialog box is still just a nice demo, rather than anything really useful, so spice it up by adding AJAX between an existing AJAX server and GWT.
A typical requirement is for a dialog box to load its contents over AJAX, and you can easily achieve this by modifying your class. Add the code in Listing 6 to the end of openDialogBox().
Listing 6
Adding AJAX
Next, use MyApp-compile to deploy it into an existing application: You'll need some existing web pages running locally – I'll assume you're running a LAMP stack.
Then compile the app and copy the www directory to your existing application:
./MyApp-compile mv -r www /path/to/my/app/gwt-www touch /path/to/my/app/gwt-www/AjaxServer.php
Finally, create a file called AjaxServer.php and add the following:
<php echo "Hello, World from my existing AJAX server called from GWT, but triggered from a native JavaScript call!"; ?>
Test the New Feature
To test the new AJAX feature, open up MyApp.htm from inside the application and click the link (Figure 2). The JavaScript API means you can call GWT functionality from the existing JS app, and the use of the AJAX server means that GWT can integrate with your existing AJAX functionality. However, the AJAX URL is hardcoded, so push that URL into a variable passed from JavaScript into Java.
First, modify the contents of initJavaScriptAPI (see Listing 7).
Listing 7
Modifying initJavaScriptAPI
The url argument on the first line is a JavaScript parameter, which will be converted to a Java variable of type java.lang.string and passed to openDialogBox.
Then modify openDialogBox to accept the argument
public void openDialogBox(String url) {
and then modify the request to use this variable:
RequestBuilder builder = new RequestBuilder (RequestBuilder.GET, URL.encode( url ));
Now compile it and move the files into your application, then add some URLs to the JS function calls so you can call existing URLs:
<a href=!javascript:openDialog('/AjaxServer1.php');">Open my GWT dialog box</a> <a href="javascript:openDialog('/AjaxServer2.php');">Open another dialog box</a>
In the final step, get the GWT functionality into the web app by including a JavaScript file. Add the script tag to the HTML header, adjusting the src=".." to point to the appropriate directory:
<script type="text/javascript"language="javascript" src="com.mycompany.MyApp.nocache.js"></script>
Then, somewhere in your template, add links that trigger the JavaScript:
<a href="javascript:openDialog('/path/to/ajax.php');">Open my Ajax server</a>
As a test, you could throw this link onto WordPress, your existing CMS, or any other web page.
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.