Developing MySQL-Backed Applications with Netbeans and Java RESTful Web Services
http-equiv="content-type">
Developing MySQL-Backed Applications with
Netbeans and Java RESTful Web Services
Yesterday I gave a webinar which
talked about how to leverage the latest version of the Netbeans IDE to
develop RESTful Web Services and clients deployed on Glassfish with
MySQL. The talk gave an overview of the design process for a sample
RESTful Pet Catalog service using JAX-R, and discussed how to
build 3 sample clients for the Pet Catalog service, one using the
Dojo
AJAX framework , one using Comet and one using JavaFX.
You can download the presentation here:
href="https://techdayscode.dev.java.net/servlets/ProjectDocumentList?folderID=9890">Developing
MySQL-Backed Applications with Netbeans and Java RESTful Web Services
you can watch a 7 minute screencast on how to build a RESTful Pet
Catalog using JAX-RS and dojo here
href="http://mediacast.sun.com/users/caroljmcdonald/media/restproject.swf/details">RESTful
Pet Catalog screencast
You can read more about the example RESTful web service and the JavaFX
client for the RESTful web
service here:
href="http://developers.sun.com/appserver/reference/techart/cometslideshow.html">
href="http://java.sun.com/developer/technicalArticles/glassfish/GFandMySQL_Part4Intro.html">Glassfish
and MySQL part 4
You can read more about the Comet client for the RESTful web
service here:
href="http://developers.sun.com/appserver/reference/techart/cometslideshow.html">RESTful
Web Services and Comet
You can read more about the dojo client for the RESTful web
service here:
a
RESTful Pet Catalog
JAX-RS provides a
standardized API for building RESTful web services in Java. Central to
the RESTful architecture is the concept of resources identified by
universal resource identifiers (URIs). The API provides a set of
annotations which you can add to Plain Old Java Objects (POJOs)
to expose web resources identified by URIs
Dojo – An
open-source DHTML toolkit written in JavaScript. The Dojo Toolkit
includes many utilities that go beyond Ajax. For example, the dojox.comet
module simplifies programming Comet applications.
Comet – Techniques
that enable a server to push data to client browsers through an HTTP
open line of communication.
href="http://java.sun.com/developer/technicalArticles/glassfish/GFandMySQL_Part4Intro.html">
- Login or register to post comments
- Printer-friendly version
- caroljmcdonald's blog
- 1842 reads






Comments
RESTful Web services and multiple tables
by ssheno3 - 2009-09-28 16:25
Hello Carol, I saw a lot of examples using RESTful Web services and exposing data from a single table. Is it possible to query more than one table at the same time (using joins) and retrieve information using RESTful Web services? Any help would be greatly appreciated! Thanks, ssheno3