Items related to Developing Enterprise Java Applications With J2Ee and...

Developing Enterprise Java Applications With J2Ee and Uml - Softcover

  • 3.00 out of 5 stars
    9 ratings by Goodreads
 
Image Not Available

Synopsis

The Java 2 Platform Enterprise Edition (J2EE TM) offers great promise for dramatically improving the way that enterprise applications are built, and organizations that have adopted the J2EE are gaining a competitive advantage. The industry-standard Unified Modeling Language (UML) has helped countless organizations achieve software success through visual modeling. Together, the UML and J2EE form a powerful set of tools, but the intricacies involved with using them in tandem are considerable.

While UML is highly effective for specifying, designing, constructing, visualizing, and documenting software systems, J2EE offers enterprise developers a simplified, component-based approach to application development. However, when using the two technologies together, developers must first consider--and attempt to reconcile--the different characteristics of each.

Developing Enterprise Java Applications with J2EE TM and UML examines the best ways to jointly leverage these technologies. Exploring concrete methods for completing a successful development project, the authors cover the use of UML and J2EE in detail. Using practical examples and a case study, they illustrate the pros and cons of specific design approaches, show how personal experience can affect design decisions, and demonstrate proven approaches for building better, software faster.

With this book as a guide, developers will be able to overcome the challenges in using UML and J2EE together, and be on their way to building robust, scalable, and complex applications.



0201738295B09042001

"synopsis" may belong to another edition of this title.

About the Author

Khawar Ahmed is a member of the Rational Rose team at Rational Software Corporation. He assists internal and external customers of Rational Rose with the use of UML and Rational Rose in the areas of Java, J2EE, XML, and Web modeling. He has over eleven years of software development experience and has been using visual modeling since the early 1990s.

Cary Umrysh has over twelve years of experience in object-oriented software development. Formerly a Rational Rose development manager and product manager at Rational Software Corporation, he is currently managing development teams for several key Enterprise Java software systems for use in the energy industry.



0201738295AB09042001

Excerpt. © Reprinted by permission. All rights reserved.

Developing complex software requires more than just churning out lines of code. As a software architect or developer involved in an industrial project, you must understand and be able to leverage critical software subdisciplines such as architecture, analysis and design techniques, development processes, visual modeling, and the underlying technology to be successful.

This book brings all these diverse elements together from the Java 2 Platform, Enterprise Edition (J2EE) development perspective to provide a holistic approach for the reader. Specifically, this book tries to answer the following key questions:

  • What is the Unified Modeling Language (UML), and how is it relevant to J2EE development?
  • How do Java and UML relate to each other?
  • What are the key concepts in software architecture?
  • How does a software development process fit into the J2EE software development equation?
  • How can analysis and design help you to arrive at a better J2EE application design?
  • What are the key J2EE technologies, and how do they fit together?
  • How can you leverage the UML for J2EE development?

Rather than reinvent the wheel, the approach taken in this book is that of bringing together known works, such as Jim Conallen's Web Modeling Profile and the Sun Java Specification Request-26 for UML/EJB Mapping Specification.

To provide a practical illustration of the topics discussed, this book guides you through a sample J2EE application development project using the Rational Unified Process (RUP) and the UML. A working implementation is provided. Suggestions for further enhancements are also listed to assist you in continuing your exploration of the UML and J2EE technologies.

Intended Audience

This book is suitable for anyone interested in learning about the UML and how it can be applied to J2EE development. Current J2EE application developers will learn how to apply the UML to J2EE application development. UML practitioners will benefit from learning about the J2EE in the context of the UML. And software professionals interested in learning both the UML and J2EE will be able to get to a productive state faster facilitated by the intertwined contextual discussion.

After reading the book, you will

  • Be able to effectively utilize the UML for developing J2EE applications

  • Learn about the key J2EE technologies (EJB, JSP, and servlets) at a technical level

  • Know when to use Model 1 versus Model 2 architecture, and identify situations where patterns such as value object and session bean chaining may be appropriate

  • Understand software architecture concepts such as decomposition, layering, components, frameworks, patterns, and tiers

  • Be able to apply techniques such as use case analysis, analysis object discovery, and analysis to design transformation to your J2EE project

  • Understand the notion of software development processes and the fundamentals of some of the currently popular processes

  • Learn how to start using the RUP for your J2EE project

This book only covers the Java language to the extent of providing a mapping of key Java concepts to the UML. Consequently, some familiarity with Java is assumed (knowing C++ or a similar language should be sufficient to get the basics from the examples). Prior knowledge of, or experience with, the UML, J2EE, or enterprise application development is not a prerequisite, but is certainly helpful.

How to Use This Book

If you are new to the UML and J2EE, you will get the most out of this book by reading it completely in a sequential manner.

Those who are comfortable with the UML and are primarily interested in learning about J2EE (or how to apply the UML to J2EE) can jump directly to Chapters 9-16.

On the other hand, if you know J2EE and mostly want to learn about UML, you should concentrate on Chapters 1-8, and then skim through the remaining portions of the book.

You will get the best results if you get your hands on a good modeling tool and try to apply visual modeling to a problem of your own!

Chapter Summaries

Chapter 1: Introduction to Enterprise Software provides a high-level overview of enterprise software development and related technologies.

Chapter 2: Introduction to the J2EE covers the basics of the Java 2 Platform, Enterprise Edition. It provides an overview of the basic technologies and the APIs, which form the J2EE.

Chapter 3: Introduction to the UML provides an overview of the UML and a quick introduction to the UML basics.

Chapter 4: UML and Java provides an overview of the Java language's mapping to the UML and covers some of the basic UML constructs.

Chapter 5: Overview of Activities introduces the notion of software development processes and outlines the approach taken in the book.

Chapter 6: Architecture, which is an important aspect of good software, introduces the notion of software architecture and provides an overview of some of the concepts in software architecture.

Chapter 7: Analyzing Customer Needs shows you how to apply UML use cases to better understand customer requirements. No matter how cool the software, if it does not meet the customer's requirements, it is a failure!

Chapter 8: Creating the Design focuses on analyzing the requirements further and creating the initial design for the case study. This chapter discusses how to translate the requirements you have gathered into software.

Chapter 9: Overview of J2EE Technologies lays the groundwork for the J2EE technologies we discuss in the remaining chapters.

Chapter 10: Servlets provides an overview of the Java servlet technology, discusses how they are modeled in the UML, and then shows a representative application of UML and servlets to the case study. Java servlets are ideal for the request-response oriented Web paradigm.

Chapter 11: JavaServer Pages teaches you about JSPs, when to use them, and how to use them in the sample project. JavaServer Pages (JSP) combine the power of servlets with the flexibility of HTML pages.

Chapter 12: Session Beans discusses how session beans are used in the middle tier and how to best model and utilize them. Session beans are one of the three types of enterprise beans provided in the J2EE. The chapter concludes with the usage of session beans in the context of the case study.

Chapter 13: Entity Beans focuses on the entity bean concept, its advantages and issues, and how to effectively model it in the UML. Entity beans provide a convenient way to objectify the stored data.

Chapter 14: Message-Driven Beans covers the technology and how to model them in the UML. Message-driven beans are a new addition to the J2EE Enterprise JavaBean specification.

Chapter 15: Assembly and Deployment discusses how UML can help assembly and deployment of a distributed application.

Chapter 16: Case Study discusses the details of the example used in this book including general requirements, restrictions, and such.

References for further reading include books, articles, and online sources.

A Glossary containing specialized terms and their meanings is provided for quick reference. An Index is provided for quick lookup and reference.

Conventions

We use several notational conventions throughout this book. A short list is provided for your reference:

  • Italicized words are used to highlight key concepts or terminology.
  • References to terms such as javax.servlet.http.HttpServletResponse are used to identify the exact J2SE or J2EE classes for further details. For example, in the preceding term the user is being referred to the HttpServletResponse class, which is found in the http package located in the servlet package of the javax package.
  • Boldface text is used to identify keywords and reserved words in the context of Java/J2EE, for example, ejbCreate.
  • Code samples are shown in a slightly different format to distinguish them from plain text, for example, public void acceptOrder() {


0201738295P10052001

"About this title" may belong to another edition of this title.

  • PublisherAddison-Wesley Professional
  • Publication date2001
  • ISBN 10 0201738295
  • ISBN 13 9780201738292
  • BindingPaperback
  • LanguageEnglish
  • Edition number1
  • Number of pages330
  • Rating
    • 3.00 out of 5 stars
      9 ratings by Goodreads

Buy Used

Condition: Good
Good condition. A copy that has...
View this item

FREE shipping within U.S.A.

Destination, rates & speeds

Search results for Developing Enterprise Java Applications With J2Ee and...

Stock Image

Ahmed, Khawar Zaman, Umrysh, Cary E
Published by Addison-Wesley Professional, 2001
ISBN 10: 0201738295 ISBN 13: 9780201738292
Used Softcover

Seller: Wonder Book, Frederick, MD, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Good. Good condition. A copy that has been read but remains intact. May contain markings such as bookplates, stamps, limited notes and highlighting, or a few light stains. Seller Inventory # L19A-01688

Contact seller

Buy Used

US$ 5.79
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Ahmed, Khawar Zaman, Umrysh, Cary E
Published by Addison-Wesley Professional, 2001
ISBN 10: 0201738295 ISBN 13: 9780201738292
Used Softcover

Seller: Wonder Book, Frederick, MD, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Very Good. Very Good condition. A copy that may have a few cosmetic defects. May also contain a few markings such as an owner's name, short gifter's inscription or light stamp. Seller Inventory # S17L-00419

Contact seller

Buy Used

US$ 5.79
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Khawar Zaman Ahmed, Cary E. Umrysh
Published by Addison-Wesley Professional, 2001
ISBN 10: 0201738295 ISBN 13: 9780201738292
Used Softcover

Seller: BookHolders, Towson, MD, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Good. [ No Hassle 30 Day Returns ][ Ships Daily ] [ Underlining/Highlighting: NONE ] [ Writing: NONE ] [ Edition: first ] Publisher: Addison-Wesley Professional Pub Date: 10/27/2001 Binding: Paperback Pages: 330 first edition. Seller Inventory # 6898198

Contact seller

Buy Used

US$ 1.76
Convert currency
Shipping: US$ 4.25
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Umrysh, Cary E., Ahmed, Khawar Zaman
Published by Addison Wesley Professional, 2001
ISBN 10: 0201738295 ISBN 13: 9780201738292
Used Softcover First Edition

Seller: Better World Books: West, Reno, NV, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Good. 1ST. Used book that is in clean, average condition without any missing pages. Seller Inventory # 39049575-6

Contact seller

Buy Used

US$ 6.63
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 2 available

Add to basket

Stock Image

Khawar Zaman Ahmed
Published by Addison-Wesley Professional, 2001
ISBN 10: 0201738295 ISBN 13: 9780201738292
Used Softcover

Seller: medimops, Berlin, Germany

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: very good. Gut/Very good: Buch bzw. Schutzumschlag mit wenigen Gebrauchsspuren an Einband, Schutzumschlag oder Seiten. / Describes a book or dust jacket that does show some signs of wear on either the binding, dust jacket or pages. Seller Inventory # M00201738295-V

Contact seller

Buy Used

US$ 5.17
Convert currency
Shipping: US$ 10.25
From Germany to U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Ahmed, Khawar Zaman; Umrysh, Cary E.
ISBN 10: 0201738295 ISBN 13: 9780201738292
New Trade Paperback

Seller: Snow Crane Books, Millburn nj, NJ, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Trade Paperback. Condition: New. !New, no remainder marks, no shelf wear, no surprises. Same day Shping.! Seller Inventory # Nx849

Contact seller

Buy New

US$ 10.23
Convert currency
Shipping: US$ 5.55
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Ahmed, Khawar Zaman
Published by Addison-Wesley, Boston, 2002
ISBN 10: 0201738295 ISBN 13: 9780201738292
Used Paperback

Seller: Infinity Books Japan, Tokyo, TKY, Japan

Seller rating 3 out of 5 stars 3-star rating, Learn more about seller ratings

Paperback. A copy that has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Seller Inventory # RWARE0000058594

Contact seller

Buy Used

US$ 8.46
Convert currency
Shipping: US$ 13.50
From Japan to U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Khawar Zaman Ahmed
Published by Longman Group, 2001
ISBN 10: 0201738295 ISBN 13: 9780201738292
Used Softcover

Seller: Books Puddle, New York, NY, U.S.A.

Seller rating 4 out of 5 stars 4-star rating, Learn more about seller ratings

Condition: Used. pp. xxiv + 330. Seller Inventory # 263160231

Contact seller

Buy Used

US$ 46.45
Convert currency
Shipping: US$ 3.99
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Ahmed Khawar Zaman
Published by Longman Group, 2001
ISBN 10: 0201738295 ISBN 13: 9780201738292
Used Softcover

Seller: Majestic Books, Hounslow, United Kingdom

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Used. pp. xxiv + 330 Illus. Seller Inventory # 4687736

Contact seller

Buy Used

US$ 45.01
Convert currency
Shipping: US$ 8.65
From United Kingdom to U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Ahmed Khawar Zaman
Published by Longman Group, 2001
ISBN 10: 0201738295 ISBN 13: 9780201738292
Used Softcover

Seller: Biblios, Frankfurt am main, HESSE, Germany

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Used. pp. xxiv + 330. Seller Inventory # 183160237

Contact seller

Buy Used

US$ 48.93
Convert currency
Shipping: US$ 11.33
From Germany to U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

There are 1 more copies of this book

View all search results for this book