Articoli correlati a Java Enterprise in a Nutshell: A Desktop Quick Reference

Java Enterprise in a Nutshell: A Desktop Quick Reference - Brossura

 
9781565924833: Java Enterprise in a Nutshell: A Desktop Quick Reference
Vedi tutte le copie di questo ISBN:
 
 

Java Enterprise in a Nutshell is an indispensable quick reference for Java programmers who are writing distributed enterprise applications. The book provides fast-paced tutorials on the following Java Enterprise APIs:

  • JDBC, a vendor-independent API for accessing relational database systems
  • RMI, a Java-only approach to distributed computing that relies on remote method invocation
  • Java IDL, a CORBA-based, language-independent approach to distributed computing
  • Java servlets, a mechanism for extending a web server that allows Java code to perform tasks traditionally handled by CGI scripts
  • JNDI, a generic Java API for working with networked naming and directory services
  • Enterprise JavaBeans, a component model that separates high-level business logic from low-level housekeeping chores like security and transaction management
These APIs are the building blocks of the Java 2 Platform, Enterprise Edition (J2EE), Sun's recently announced new platform for enterprise computing. J2EE is the standard Java 2 platform with a number of extensions for enterprise development.Java Enterprise in a Nutshell also contains O'Reilly's classic-style, quick-reference material for all of the classes in the various packages that comprise the Enterprise APIs. This material includes the core Enterprise APIs that are part of Java 1.2, as well as numerous standard extensions.This book is a companion to both Java in a Nutshell, 3rd Edition, which covers the key non-graphical, non-enterprise APIs in Java 1.2, and Java Foundation Classes in a Nutshell, which describes the graphics- and GUI-related classes of Java 1.2.

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

L'autore:

Kristopher Magnusson is the Open Source Programs Architect at Novell. He edited the original Java Directory Service Interface proposal for JavaSoft in 1996, worked on the Novell JNDI design team as the lead writer, and wrote JNDI sample code and tutorials. He earned a Bachelor's of Science from the University of Utah in 1991 in economics, has been active in the NeXT and open source communities for years, and loves object-oriented design and computing. He lives with his partner, Kristen, in Salt Lake City, where he enjoys community activism, mountain biking, and oenophilia.

David Flanagan is a computer programmer who spends most of his time writing about JavaScript and Java. His books with O'Reilly include Java in a Nutshell, Java Examples in a Nutshell, Java Foundation Classes in a Nutshell, JavaScript: The Definitive Guide, and JavaScript Pocket Reference. David has a degree in computer science and engineering from the Massachusetts Institute of Technology. He lives with his wife and son in the U.S. Pacific Northwest bewteen the cities of Seattle, Washington and Vancouver, British Columbia. David has a simple website at http://www.davidflanagan.com.

Jim Farley is a software engineer, computer scientist, and IT manager. His recent activities have included heading up the engineering group at the Harvard Business School and bringing good things to life at GE's Research and Development center. He's dealt with computing (distributed and otherwise) in lots of different ways, from automated image inspection to temporal reasoning systems. Jim has Bachelor's and Master's degrees in computer systems engineering from Rensselaer Polytechnic Institute.

William Crawford has been developing web-based enterprise applications since 1995, including one of the first web-based electronic medical record systems (at Children's Hospital in Boston) and some of the first enterprise-level uses of Java. He has consulted for a variety of institutional clients, including Boston Children's Hospital, Harvard Medical Center, numerous startups and several Fortune 500 companies. Prior to an acquisition he was CTO of Invantage, Incorporated in Cambridge, MA. He received a degree in history and economics from Yale University. He is the co-author of Java Servlet Programming, 2nd Edition, Java Enterprise in a Nutshell, 2nd Edition, and two forthcoming O'Reilly titles. Will is currently Principal Software Architect at Perceptive Informatics, Inc.Massachusetts, provider of software and services to the pharmaceutical industry. He can be reached at http://www.williamcrawford.info

Contenuti:
Preface; Contents of This Book; Related Books; Java Programming Resources Online; Examples Online; Conventions Used in This Book; We’d Like to Hear from You; Acknowledgments; Introducing the Java Enterprise APIs; Chapter 1: Introduction; 1.1 Enterprise Computing Defined; 1.2 Enterprise Computing Demystified; 1.3 The Java Enterprise APIs; 1.4 Enterprise Computing Scenarios; 1.5 Java Enterprise APIs Versus Jini; Chapter 2: JDBC; 2.1 JDBC Architecture; 2.2 JDBC Basics; 2.3 JDBC Drivers; 2.4 Connecting to the Database; 2.5 Statements; 2.6 Results; 2.7 Handling Errors; 2.8 Prepared Statements; 2.9 Metadata; 2.10 Transactions; 2.11 Stored Procedures; 2.12 Escape Sequences; 2.13 JDBC 2.0; Chapter 3: Remote Method Invocation; 3.1 Introduction to RMI; 3.2 Defining Remote Objects; 3.3 Creating the Stubs and Skeletons; 3.4 Accessing Remote Objects as a Client; 3.5 Dynamically Loaded Classes; 3.6 Remote Object Activation; 3.7 RMI and Native Method Calls; 3.8 RMI over IIOP; Chapter 4: Java IDL; 4.1 The CORBA Architecture; 4.2 Creating CORBA Objects; 4.3 Putting It in the Public Eye; 4.4 Finding Remote Objects; 4.5 What If I Don’t Know the Interface?; Chapter 5: Java Servlets; 5.1 The Servlet Life Cycle; 5.2 Servlet Basics; 5.3 Servlet Chaining; 5.4 Custom Servlet Initialization; 5.5 Thread Safety; 5.6 Server-Side Includes; 5.7 Cookies; 5.8 Session Tracking; 5.9 Databases and Non-HTML Content; 5.10 The Servlet API 2.1; Chapter 6: JNDI; 6.1 JNDI Architecture; 6.2 A JNDI Example; 6.3 Introducing the Context; 6.4 Looking Up Objects in a Context; 6.5 The NamingShell Application; 6.6 Listing the Children of a Context; 6.7 Creating and Destroying Contexts; 6.8 Binding Objects; 6.9 Accessing Directory Services; 6.10 Modifying Directory Entries; 6.11 Creating Directory Entries; 6.12 Searching a Directory; Chapter 7: Enterprise JavaBeans; 7.1 A Note on Evolving Standards; 7.2 EJB Roles; 7.3 Transaction Management; 7.4 Implementing a Basic EJB Object; 7.5 Implementing Session Beans; 7.6 Implementing Entity Beans; 7.7 Deploying an Enterprise JavaBeans Object; 7.8 Using an Enterprise JavaBeans Object; 7.9 Changes in EJB 1.1 Specification; Enterprise Reference; Chapter 8: SQL Reference; 8.1 Relational Databases; 8.2 Data Types; 8.3 Schema Manipulation Commands; 8.4 Data Manipulation Commands; 8.5 Functions; 8.6 Return Codes; Chapter 9: RMI Tools; Chapter 10: IDL Reference; 10.1 IDL Keywords; 10.2 Identifiers; 10.3 Comments; 10.4 Basic Data Types; 10.5 Constants and Literals; 10.6 Naming Scopes; 10.7 User-Defined Data Types; 10.8 Exceptions; 10.9 Module Declarations; 10.10 Interface Declarations; Chapter 11: CORBA Services Reference; 11.1 Naming Service; 11.2 Security Service; 11.3 Event Service; 11.4 Persistent Object Service; 11.5 Life Cycle Service; 11.6 Concurrency Control Service; 11.7 Externalization Service; 11.8 Relationship Service; 11.9 Transaction Service; 11.10 Query Service; 11.11 Licensing Service; 11.12 Property Service; 11.13 Time Service; 11.14 Trading Service; 11.15 Collection Service; Chapter 12: Java IDL Tools; API Quick Reference; Chapter 13: The java.rmi Package; Chapter 14: The java.rmi.activation Package; Chapter 15: The java.rmi.dgc Package; Chapter 16: The java.rmi.registry Package; Chapter 17: The java.rmi.server Package; Chapter 18: The java.sql Package; Chapter 19: The javax.ejb Package; Chapter 20: The javax.ejb.deployment Package; Chapter 21: The javax.jms Package; Chapter 22: The javax.naming Package; Chapter 23: The javax.naming.directory Package; Chapter 24: The javax.naming.spi Package; Chapter 25: The javax.servlet Package; Chapter 26: The javax.servlet.http Package; Chapter 27: The javax.sql Package; Chapter 28: The javax.transaction Package; Chapter 29: The javax.transaction.xa Package; Chapter 30: The org.omg.CORBA Package; Chapter 31: The org.omg.CORBA.DynAnyPackage Package; Chapter 32: The org.omg.CORBA.ORBPackage Package; Chapter 33: The org.omg.CORBA.portable Package; Chapter 34: The org.omg.CORBA.TypeCodePackage Package; Chapter 35: The org.omg.CosNaming Package; Chapter 36: The org.omg.CosNaming.NamingContextPackage Package; Chapter 37: Class, Method, and Field Index; 37.1 Symbols; 37.2 A; 37.3 B; 37.4 C; 37.5 D; 37.6 E; 37.7 F; 37.8 G; 37.9 H; 37.10 I; 37.11 J; 37.12 K; 37.13 L; 37.14 M; 37.15 N; 37.16 O; 37.17 P; 37.18 Q; 37.19 R; 37.20 S; 37.21 T; 37.22 U; 37.23 V; 37.24 W; 37.25 X; Colophon;

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

  • EditoreO'Reilly Media
  • Data di pubblicazione1999
  • ISBN 10 1565924835
  • ISBN 13 9781565924833
  • RilegaturaCopertina flessibile
  • Numero edizione1
  • Numero di pagine662
  • Valutazione libreria

Spese di spedizione: EUR 34,76
Da: Cile a: U.S.A.

Destinazione, tempi e costi

Aggiungere al carrello

Altre edizioni note dello stesso titolo

9780596101428: Java Enterprise: in a Nutshell

Edizione in evidenza

ISBN 10:  0596101422 ISBN 13:  9780596101428
Casa editrice: Oreilly & Associates Inc, 2005
Brossura

  • 9780596001148: Java Enterprise in a Nutshell: A Desktop Quick Reference

    Oreill..., 2000
    Rilegato

  • 9780596001520: Java Enterprise in a Nutshell, 2nd Edition

    O'Reil..., 2002
    Brossura

  • 9783897213340: Java Enterprise in a Nutshell

    O'Reil..., 2002
    Brossura

I migliori risultati di ricerca su AbeBooks

Immagini fornite dal venditore

FLANAGAN, DAVID/ FARLEY, JIM/ CRAWFORD, WILLIAM R
Editore: O'REILLY (1999)
ISBN 10: 1565924835 ISBN 13: 9781565924833
Nuovo Blanda Quantità: 1
Da:
LIBRERIA LEA+
(Santiago, RM, Cile)
Valutazione libreria

Descrizione libro Blanda. Condizione: New. Condizione sovraccoperta: Nuevo. No Aplica (illustratore). 1. Nothing is as constant as change, and this is as true in enterprise computing as anywhere else. Since Java Enterprise in a Nutshell was first published in September of 1999, a dozen or more new APIs have been added to the platform, reflecting the new and different ways developers implement their enterprise objectives. And now developers are being called on to add even greater, more complex levels of interconnectivity to their applications, as the concepts behind Web Services solidify and implementation decisions need coding.Java developers today need a clear understanding of the new APIs, tools, capabilities and pitfalls in J2EE 2.0 so they can plan a technology and implementation strategy for new enterprise projects. Fortunately, this is exactly what they get with the new Java Enterprise in a Nutshell, 2nd edition!Completely revised and updated for the new 2.0 version of Sun Microsystems Java Enterprise Edition software, Java Enterprise in a Nutshell 2nd edition covers all of the J2EE APIs, including RMI, Java IDL, JDBC, JNDI, Java Servlet, and Enterprise JavaBeans, with a fast-paced tutorial and compact reference on each technology. Then Java Enterprise in a Nutshell goes even further, providing a classic O'Reilly-style quick reference for all of the classes in the various packages that comprise the Enterprise APIs - covering the core enterprise APIs as well as numerous standard extensions. 725 gr. Libro. Codice articolo 9781565924833LEA14874

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 24,50
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 34,76
Da: Cile a: U.S.A.
Destinazione, tempi e costi