Movatterモバイル変換


[0]ホーム

URL:


Document Information

Preface

Part I Introduction

1.  Overview

2.  Using the Tutorial Examples

Part II The Web Tier

3.  Getting Started with Web Applications

4.  Java Servlet Technology

5.  JavaServer Pages Technology

6.  JavaServer Pages Documents

7.  JavaServer Pages Standard Tag Library

8.  Custom Tags in JSP Pages

9.  Scripting in JSP Pages

10.  JavaServer Faces Technology

11.  Using JavaServer Faces Technology in JSP Pages

12.  Developing with JavaServer Faces Technology

13.  Creating Custom UI Components

14.  Configuring JavaServer Faces Applications

15.  Internationalizing and Localizing Web Applications

Part III Web Services

16.  Building Web Services with JAX-WS

17.  Binding between XML Schema and Java Classes

18.  Streaming API for XML

19.  SOAP with Attachments API for Java

Part IV Enterprise Beans

20.  Enterprise Beans

21.  Getting Started with Enterprise Beans

22.  Session Bean Examples

Thecart Example

The Business Interface

Session Bean Class

Life-Cycle Callback Methods

Business Methods

The Remove Method

Helper Classes

Building, Packaging, Deploying, and Running thecart Example

Building, Packaging, and Deploying thecart Example Using NetBeans IDE

Running thecart Application Client Using NetBeans IDE

Building, Packaging, and Deploying thecart Example Using Ant

Running thecart Application Client Using Ant

Theall Task

Undeploying thecart Example

A Web Service Example:helloservice

The Web Service Endpoint Implementation Class

Stateless Session Bean Implementation Class

Building, Packaging, Deploying, and Testing thehelloservice Example

Building, Packaging, and Deploying thehelloservice Example Using NetBeans IDE

Building, Packaging, and Deploying thehelloservice Example Using Ant

Testing the Service without a Client

Using the Timer Service

TheTimeout Method

Creating Timers

Canceling and Saving Timers

Getting Timer Information

Transactions and Timers

Thetimersession Example

Building, Packaging, Deploying, and Running thetimersession Example

Building, Packaging, Deploying, and Running thetimersession Example Using NetBeans IDE

Building, Packaging, and Deploying thetimersession Example Using Ant

Running thetimersession Application Client Using Ant

Handling Exceptions

23.  A Message-Driven Bean Example

Part V Persistence

24.  Introduction to the Java Persistence API

25.  Persistence in the Web Tier

26.  Persistence in the EJB Tier

27.  The Java Persistence Query Language

Part VI Services

28.  Introduction to Security in the Java EE Platform

29.  Securing Java EE Applications

30.  Securing Web Applications

31.  The Java Message Service API

32.  Java EE Examples Using the JMS API

33.  Transactions

34.  Resource Connections

35.  Connector Architecture

Part VII Case Studies

36.  The Coffee Break Application

37.  The Duke's Bank Application

Part VIII Appendixes

A.  Java Encoding Schemes

B.  About the Authors

Index

 

The Java EE 5 Tutorial

Java Coffee Cup logo
PreviousContentsNext

A Web Service Example:helloservice

This example demonstrates a simple web service that generates a response based oninformation received from the client.HelloServiceBean is a stateless session bean thatimplements a single method,sayHello. This method matches thesayHello method invoked bythe client described inA Simple JAX-WS Client.

The Web Service Endpoint Implementation Class

HelloServiceBean is the endpoint implementation class. The endpoint implementation class is typically the primaryprogramming artifact for enterprise bean web service endpoints. The web service endpoint implementationclass has the following requirements:

  • The class must be annotated with either thejavax.jws.WebService orjavax.jws.WebServiceProvider annotations.

  • The implementing class may explicitly reference an SEI through theendpointInterface element of the@WebService annotation, but is not required to do so. If noendpointInterface is specified in@WebService, an SEI is implicitly defined for the implementing class.

  • The business methods of the implementing class must be public, and must not be declaredstatic orfinal.

  • Business methods that are exposed to web service clients must be annotated withjavax.jws.WebMethod.

  • Business methods that are exposed to web service clients must have JAXB-compatible parameters and return types. SeeDefault Data Type Bindings.

  • The implementing class must not be declaredfinal and must not beabstract.

  • The implementing class must have a default public constructor.

  • The endpoint class must be annotated@Stateless.

  • The implementing class must not define thefinalize method.

  • The implementing class may use thejavax.annotation.PostConstruct orjavax.annotation.PreDestroy annotations on its methods for life-cycle event callbacks.

    The@PostConstruct method is called by the container before the implementing class begins responding to web service clients.

    The@PreDestroy method is called by the container before the endpoint is removed from operation.

Stateless Session Bean Implementation Class

TheHelloServiceBean class implements thesayHello method, which is annotated@WebMethod. The sourcecode for theHelloServiceBean class follows:

package com.sun.tutorial.javaee.ejb;import javax.ejb.Stateless;import javax.jws.WebMethod;import javax.jws.WebService;@Stateless@WebServicepublic class HelloServiceBean {    private String message = "Hello, ";    public void HelloServiceBean() {}    @WebMethod    public String sayHello(String name) {        return message + name + ".";    }}

Building, Packaging, Deploying, and Testing thehelloservice Example

You can build, package, and deploy thehelloservice example using either NetBeans IDEor Ant. You can then use the Admin Console to test the webservice endpoint methods.

Building, Packaging, and Deploying thehelloservice Example Using NetBeans IDE

Follow these instructions to build, package, and deploy thehelloservice example toyour Application Server instance using NetBeans IDE.

  1. In NetBeans IDE, select File→Open Project.

  2. In the Open Project dialog, navigate totut-install/javaeetutorial5/examples/ejb/.

  3. Select thehelloservice folder.

  4. Select the Open as Main Project and Open Required Projects check boxes.

  5. Click Open Project.

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

This builds and packages to application intohelloservice.ear, located intut-install/javaeetutorial5/examples/ejb/helloservice/dist, and deploys thisear file to your Application Server instance.

Building, Packaging, and Deploying thehelloservice Example Using Ant

Follow these instructions to build, package, and deploy thehelloservice example toyour Application Server instance using Ant.

  1. In a terminal window, go to thetut-install/javaeetutorial5/examples/ejb/helloservice/ directory.

  2. To buildhelloservice, type the following command:

    ant

    This runs thedefault task, which compiles the source files and packages the application into a JAR file located attut-install/examples/ejb/helloservice/dist/helloservice.jar.

  3. To deployhelloservice, type the following command:

    ant deploy

    Upon deployment, the Application Server generates additional artifacts required for web service invocation, including the WSDL file.

Testing the Service without a Client

The Application Server Admin Console allows you to test the methods ofa web service endpoint. To test thesayHello method ofHelloServiceBean, do thefollowing:

  1. Open the Admin Console by opening the following URL in a web browser:

    http://localhost:4848/
  2. Enter the admin username and password to log in to the Admin Console.

  3. Click Web Services in the left pane of the Admin Console.

  4. Clickhelloservice.

  5. Click Test.

  6. Under Methods, enter a name as the parameter to thesayHello method.

  7. Click thesayHello button.

    This will take you to thesayHello Method invocation page.

  8. Under Method returned, you’ll see the response from the endpoint.

PreviousContentsNext

Copyright © 2010, Oracle and/or its affiliates. All rights reserved.Legal Notices


[8]ページ先頭

©2009-2025 Movatter.jp