Skip to main content


developerWorks  >  Java technology  >

New to Java programming

developerWorks


What is Java technology?
Why is Java technology important?
What are the Java component technologies?
How does Java technology relate to Web application development?
How does Java technology relate to SOA/Web services?
How does Java technology relate to dynamic languages and functional programming?
How does Java technology relate to open source software development?
How can I improve my Java programming skills?
What IBM tools and products are available for Java programmers?



The developerWorks Java™ technology zone contains hundreds of articles, tutorials, tips, and community resources to help software developers make the most of the Java platform and related technologies. But when you're looking for a place to get started, sifting through the volume of resources available on the Web today can be overwhelming. This page provides an overview of Java technology basics within the overall context of the language as well as the evolving Java platform. It includes starting points for further investigation in the form of links to relevant introductory developerWorks content, other educational resources, and IBM downloads and products.


What is Java technology?

Java technology is both a programming language and a platform:

  • The Java programming language is a high-level, object-oriented language. The language is unusual because Java programs are both compiled and interpreted. Compilation, which happens once per program, translates Java code into an intermediate language called Java bytecode. Bytecode is then parsed and run (interpreted) by the Java Virtual Machine (JVM) — a translator between the language and the underlying operating system and hardware. All implementations of the programming language must emulate the JVM, enabling Java programs to run on any system that has a version of the JVM.

  • The Java platform is a software-only platform that runs on top of various hardware platforms. It comes in three versions (see Multiple editions of the Java platform, below). It consists of the JVM and the Java Application Programming Interface (API) — a large collection of ready-made software components (classes) that ease the development and deployment of applets and applications. The Java API spans everything from basic objects to networking and security and from XML generation to Web services. It is grouped into libraries — known as packages — of related classes and interfaces.

    Along with the Java API, every full implementation of the Java platform includes:

    • Development tools for compiling, running, monitoring, debugging, and documenting applications
    • Standard mechanisms for deploying applications to users
    • User interface toolkits that let you create sophisticated graphical user interfaces (GUIs)
    • Integration libraries that let programs access databases and manipulate remote objects

The JVM has also proven to be a robust platform for executing languages other than the Java language. For example, Groovy, Scala, Clojure and special implementations of Ruby and Python give developers the versatility to program for the JVM in a dynamic or functional language. JavaFX Script is another addition to the evolving Java platform and language. (For more information, see How does Java technology relate to dynamic languages and functional programming? below.)

Java technology was developed by Sun Microsystems, which is currently under agreement to be purchased by Oracle Corporation. The Java Community Process (JCP), an open organization of international Java developers and licensees, develops and revises Java technology specifications, reference implementations, and technology compatibility kits. In 2007, Sun made the bulk of its core Java technology available as open-source software under the GNU general public license version 2 (GPLv2). (For more information, see How does Java technology relate to open source software development? below.)


Back to top



Why is Java technology important?

The main benefit of the Java language is the portability of Java applications across hardware platforms and operating systems — possible because the JVM installed on each platform understands the same bytecode.

The Java language and platform scale impressively. Applications can be written easily (or adapted from existing Java desktop applications) for devices with limited resources. Scaling up, the language is an ideal framework for server-side Web programming, extending a user's computing power from the desktop to the Web's resources. Because it was designed to run in a secure manner over networks, the language affords this level of security when operating over the Internet. Web components are supported by runtime platforms called Web containers, whose services include request dispatching, security, concurrency, life-cycle management, and access to APIs that handle operations such as naming, transactions, and e-mail. At the high end, Java application servers serve as Web containers for Java components, XML, and Web services that can interact with databases and provide dynamic Web content; they also provide an application-deployment environment for enterprise applications, with capabilities for transaction management, security, clustering, performance, availability, connectivity, and scalability.

By supporting open standards in the enterprise, Java technology opens the door to using XML and Web services to help share information and applications across business lines (see How does Java technology relate to SOA/Web services? below). Java technology serves as the backbone of many IBM products and technical consulting services (see What IBM tools and products are available for Java programmers? below) and is critical to several key IBM initiatives:

  • With Smarter Planet, IBM promotes green technologies such as cloud and stream computing, sensor capabilities, virtualization, visualization, and algorithmic models that are transforming the systems that define the way we live and work as a society.

  • Learn more about IBM's Smart SOA approach to Service Oriented Architecture, a business-centric IT architectural style that supports integrating your business as linked, repeatable business tasks or services. To help you get started, IBM also offers a series of SOA Entry Points for both business and IT users.

  • IBM's Business Process Management enabled by SOA offers software and services that help organizations optimize business performance by discovering, documenting, automating, and continuously improving business processes. Offerings are based on a flexible, extensible, open standards-based software — including Java technology — and hardware infrastructure.

  • IBM WebSphere sMash is an IBM project focused on agile development of Web 2.0 applications based on SOA. WebSphere sMash introduces a simple environment for creating, assembling, and executing applications based on popular Web technologies, including a scripting runtime for Groovy and PHP, with APIs optimized for producing REST-style services, integration mashups, and Web interfaces. Project Zero is the development community for WebSphere sMash, and also offers a no-charge development platform.

Multiple editions of the Java platform
Three editions of the Java platform make it easier for software developers, service providers, and device manufacturers to target specific markets:

JavaFX
JavaFX is not quite another edition of the Java platform, nor is it entirely separate. JavaFX is built on top of the JVM and interacts seamlessly with Java SE 6 classes and functionality. JavaFX provides an integrated development environment for building rich, immersive multimedia applications for desktop, Web, and television. The JavaFX platforms includes the JavaFX SDK 1.2 and NetBeans IDE 6.5.1, and JavaFX Script, a declarative scripting language. (See "
Create rich applications with JavaFX Script" to learn more about JavaFX and JavaFX Script.)


Back to top



What are the Java component technologies?

The developerWorks Java technology zone maintains a complete glossary of the standard Java component technologies. The following is a partial list of components, optional packages, and extensions for each edition of the platform — the intricate parts that make up the whole — complete with a short description and a link to a resource to demonstrate its place in the Java development world. Note that many of the following resources are available across the three editions.

Technologies in Java SE:

  • Java Foundation Classes (Swing) is a set of Java class libraries that support building GUIs and graphics functionality for Java-based client applications. (See the tutorial "Introduction to Swing"; "Dynamic interface design with Swing" and "Enhance the accessibility of your GUIs" can also help you get started with Swing.)

  • JavaHelp is a platform-independent, extensible help system that enables developers and authors to incorporate online help in applets, components, applications, operating systems, and devices and to deliver Web-based online documentation. (See "Lend a helping hand to your Java applications.")

  • Java Native Interface (JNI) lets Java code that runs inside a JVM interoperate with applications and libraries written in other programming languages. (See "Best practices for using the Java Native Interface.")

  • Java Platform Debugger Architecture (JPDA) is the debugging support infrastructure for Java SE. (See "The future of software development.")

  • Java 2D API is a set of classes for advanced 2D graphics and imaging that provides extensive support for image compositing and alpha channel images, a set of classes to provide accurate color space definition and conversion, and a set of display-oriented imaging operators. (See the tutorial "Introduction to Java 2D.")

  • Java Web Start helps you simplify deployment of Java applications by letting users download and launch full-featured applications (such as spreadsheets) with a single click, without going through installation procedures. (See "Java Web Start.")

  • Certification Path API provides a set of APIs for creating, building, and verifying certification paths (also known as "certificate chains") for securely establishing the mapping of a public key to a subject. (See "Generate certificate chains for testing Java applications.")

  • Java Database Connectivity (JDBC) is an API that lets you access most tabular data sources from within Java code, providing cross-DBMS connectivity to a wide range of SQL databases and access to other tabular data sources, such as spreadsheets or flat files. (See "What's new in JDBC 3.0" and the tutorial "Understanding JDBC.")

  • Java Authentication and Authorization Service (JAAS) is a package that enables services to authenticate and enforce access controls on users by implementing a Java version of the standard Pluggable Authentication Module (PAM) framework and by supporting user-based authorization. (See "Java security with JAAS and JSSE" and "Java authorization internals"; try the tutorial "Java security, Part 2: Authentication and authorization.")

  • Java Cryptography Extension (JCE) is a set of packages that provides a framework and implementations for encryption, key generation and agreement, and Message Authentication Code (MAC) algorithms. It provides encryption support for symmetric, asymmetric, block, and stream ciphers, and it supports secure streams and sealed objects. (See the tutorial "Java security: Crypto basics.")

  • Java Data Objects (JDO) is a standard interface-based Java model abstraction of persistence that lets programmers directly store their Java domain model instances into the persistent store (database), potentially replacing such methods as direct file I/O, serialization, JDBC, and EJB Bean Managed Persistence (BMP) or Container Managed Persistence (CMP) Entity Beans. (See the tutorial "Hands-on Java Data Objects.")

  • Java Management Extensions (JMX) provides tools for building distributed, Web-based, modular and dynamic applications for managing and monitoring devices, applications, and service-driven networks. (See "Using Java platform management beans.")

  • Java Media Framework (JMF) enables audio, video, and other time-based media to be added to Java applications and applets. (See the tutorial "Java Media Framework basics.")

  • Java Naming and Directory Interface (JNDI) provides Java applications with a unified interface to multiple naming and directory services in the enterprise, enabling seamless connectivity to heterogeneous enterprise naming and directory services. (See "Industrial-strength JNDI optimization"; also try "Navigate the JNDI maze.")

  • Java Secure Socket Extensions (JSSE) is a set of packages that enables secure Internet communications, implementing a Java version of SSL (Secure Sockets Layer) and TLS (Transport Layer Security) protocols and including functionality for data encryption, server authentication, message integrity, and optional client authentication. (See "Java security with JAAS and JSSE"; also try the tutorial "Using JSSE for secure socket communication.")

  • Java 3D is an API developers can use to incorporate scalable, platform-independent 3D graphics into Java applications easily by providing a set of object-oriented interfaces that support a simple, high-level programming model. (See the tutorial "Java 3D joy ride.")

  • Metadata Facility lets you mark classes, interfaces, fields, and methods as having particular attributes so that they can be processed in special ways by development tools, deployment tools, or runtime libraries. (See "Annotations in Tiger, Part 1: Add metadata to Java code.")

  • Java Content Repository API is an API for accessing content repositories in Java SE independently of implementation. A content repository is a high-level information-management system that is a superset of traditional data repositories. (See "Introducing the Java Content Repository API.")

  • Enumerations are a type that lets you represent specific pieces of data as constants, all in a type-safe manner. (See "Getting started with enumerated types.")

  • Generics let you define classes with abstract type parameters that you specify at instantiation time. (See "Introduction to generic types in JDK 5.0"; read "Spice up collections with generics and concurrency" to find out how generics make working with collections easier in Java SE 6.)

  • Concurrency Utilities are a set of medium-level utilities that provide functionality commonly needed in concurrent programs. (See the tutorial "Concurrency in JDK 5.0.")

  • Java API for XML Processing (JAXP) lets Java applications parse and transform XML documents independently of a particular XML processing implementation and gives you the flexibility to swap between XML processors without making application code changes. Java API for XML Binding (JAXB) lets you automate the mapping between XML documents and Java objects. (See the three-part tutorial "XML programming in Java technology"; dig deeper into JAXP with "All about JAXP, Part 1" and "All about JAXP, Part 2"; explore further in the Practical data binding article series; also check out the developerWorks XML zone.)

  • SOAP with Attachments API for Java (SAAJ) enables developers to produce and consume messages conforming to the SOAP 1.1 specification and SOAP with Attachments note. (Read "Send and receive SOAP messages with SAAJ".)

Technologies in J2EE:

  • Enterprise JavaBeans (EJB) technology uses a component model to simplify the development of middleware applications with automatic support for services such as transactions, security, and database connectivity. (See the tutorial "Getting started with Enterprise JavaBeans technology," which introduces the technology; see the series EJB best practices; check out "Design enterprise applications with the EJB 3.0 Java Persistence API.")

  • Portlet Specification defines a set of APIs for Java portal computing, addressing the areas of aggregation, personalization, presentation, and security. (See "What's new in the Java Portlet Specification V2.0 (JSR 286)?")

  • JavaMail is an API that provides a set of abstract classes that model a mail system. (See the tutorial "Fundamentals of JavaMail API.")

  • Java Message Service (JMS) is an API that enables the development of portable, message-based applications for the Java platform by defining a common set of messaging concepts and programming strategies for all JMS technology-compliant messaging systems. (See the tutorial "Introducing the Java Message Service.")

  • JavaServer Faces (JSF) provides a programming model that helps you craft Web applications by assembling reusable UI components in a page, connecting these components to an application data source, and wiring client-generated events to server-side event handlers. (See the three-part series "JSF2 fu" and explore the JSF for nonbelievers, which provides fundamental JSF guidance (though on a previous version); also see the article "Facelets fits JSF like a glove.")

  • JavaServer Pages (JSP) lets Web developers rapidly develop and easily maintain dynamic, platform-independent Web pages with separate user interfaces and content generation so designers can change the page layout without altering the dynamic content. The technology uses XML-like tags that encapsulate the logic that generates the content for the page. (See the tutorial "Introduction to JavaServer Pages technology"; also see the series JSP best practices.)

  • Standard Tag Library for JavaServer Pages (JSTL) is a collection of custom tags that enable many common Web site functions in a standardized format. (See the four-part article series "A JSTL primer.")

  • Java Servlets, now version 3.0 and included in JEE 6, extend and enhance the reach of Web servers by providing a component-based, platform-independent method for building Web-based applications. Servlet 3.0 improves extensibility.

  • J2EE Connector Architecture (JCA) defines a standard architecture for connecting J2EE platforms to heterogeneous Enterprise Information Systems (EIS) by defining a set of scalable, secure, and transactional mechanisms, thus enabling an EIS vendor to provide a standard resource adapter that plugs into an application server. (See "Understanding JCA transactions"; "Choosing among JCA, JMS, and Web services for EAI"; "Integrate remote enterprise information systems with JCA, JMS, and Web services"; and the tutorial, "Introduction to the J2EE Connector Architecture.")

  • J2EE Management Specification (JMX) defines a management information model for the J2EE platform. The J2EE Management Model is designed to be interoperable with many management systems and protocols and includes standard mappings of the model to the Common Information Model (CIM), an SNMP Management Information Base (MIB), and to the Java object model through a server resident EJB component, the J2EE Management EJB Component (MEJB). (See "From black boxes to enterprises: Management, JMX 1.1 style and "Java theory and practice: Instrumenting applications with JMX" to learn more.)

  • Java Transaction API (JTA) is a high-level, implementation- and protocol-independent API that lets applications and application servers access transactions. Java Transaction Service (JTS) specifies the implementation of a Transaction Manager that supports JTA and implements the Java mapping of the OMG Object Transaction Service (OTS) 1.1 specification at the level below the API. JTS propagates transactions using the Internet Inter-ORB Protocol (IIOP). (See "Understanding JTS — An introduction to transactions.")

Technologies in J2ME:


Back to top



How does Java technology relate to Web application development?

The Java language has long been a mainstay of Web development, and recent years have seen an explosion of frameworks and tools that streamline Java Web development and facilitate the creation of rich, interactive Web 2.0 applications.

Learn more about Web development using the Java language and platform:

Also, visit the developerWorks Web development zone for many more excellent Web application development resources.


Back to top



How does Java technology relate to SOA/Web services?

A service-oriented architecture is a component model that relates the functional units of an application (known as services, hence Web services) through well-defined interfaces and contracts between the services. The interface is defined in a neutral manner independently of the hardware, operating system, and programming language in which the service is implemented, letting services constructed on different systems interact with one another in a uniform, universal manner. SOAs are a loosely coupled alternative model to the more traditional, tightly coupled, object-oriented models.

The resulting Web services let business rules and processes be defined in XML so software applications can communicate in a platform- and programming language-independent manner. XML technology makes data portable and facilitates the creation of messages, while Java technology makes code portable. The fact that XML and the Java language work well together makes them an ideal combination to build and deploy Web services.

Learn more about it:


Back to top



How does Java technology relate to dynamic languages and functional programming?

Many aspiring Java developers have a wealth of experience in other languages. And even veteran Java developers appreciate that the Java programming language isn't the ideal language for every development need. Fortunately, the JVM's support for multiple languages lets the Java platform take advantage of the agility and features of modern dynamic scripting languages and functional languages for prototyping or building certain types of applications.

Learn more about it:

Crossing over

Other frameworks are shaping the way Java frameworks are built, and the concepts other languages use can inform your Java programming. The Crossing borders column series discusses programming concepts and techniques that differ from Java development but are still relevant to it.

  • The Groovy scripting language puts the features and libraries Java developers are most familiar with into an agile development framework that doesn't require compilation, eases syntactical constructs, and lets its scripts be used inside normal Java applications. The developerWorks Practically Groovy column series is a first stop for learning what Groovy can do to speed up your application development experience. Groovy fanatics might also want to check out the Mastering Grails series.

  • The Java Scripting API, new in Java SE 6 and backward-compatible to Java SE 5, provides a simple way to invoke dozens of scripting languages using a small set of interfaces and concrete classes. It also lets you read and invoke external scripts at runtime, enabling you to change a running application's behavior. Read more about it in the two-part article "Invoke dynamic languages dynamically."

  • Are you a fan of functional programming? The busy Java developer's guide to Scala column series introduces Scala, a programming language that combines functional and object-oriented techniques for the JVM.

  • Perhaps you're curious about Clojure? This Lisp dialect is a functional language with features that are particularly valued for their effectiveness in concurrency programming. Learn more about Clojure by reading "The Clojure programming language," which also introduces the Clojure plug-in for Eclipse.

  • JavaFX Script, part of the Java FX family of technologies, is a declarative scripting language designed to be used in building next-generation rich Internet applications. Read the developerWorks guide to JavaFX Script essentials to learn more about it.

  • The Java language itself is evolving, in part to keep up with the newer possibilities and trends introduced by dynamic languages. "The closures debate" addresses one of the most important (and controversial) updates proposed for Java 7; "Java theory and practice: Going wild with generics" discusses generics, which were introduced in Java 5.

  • Support for alternative languages has been a JVM feature for quite a while. Check out the alt.lang.jre column series to learn about using implementations of Rexx, Ruby, JavaScript, Python, and other languages on the Java platform.

In addition to ever-expanding support for alternate languages on the standard JVM, the Da Vinci Machine project has been established to prototype extensions to the JVM that will enable it to run non-Java languages faster and more efficiently. The Da Vinci Machine project is part of OpenJDK, an open-source implementation of Java SE.


Back to top



How does Java technology relate to open source software development?

Myriad open source projects extend Java technology with libraries, tools, frameworks, applications, and application servers to help programmers harness this powerful technology. Various open source technologies have been incorporated into the Java platform itself, and others are perennial favorites (and in some cases de facto standards) for Java developers.

Learn more about some of the prominent open source technologies for Java programming:


Back to top



How can I improve my Java programming skills?

You can take two routes to improving your skills: take a course (for certification or just for learning) or teach yourself (and of course, practice by writing code). Besides tapping the knowledge of experienced developers, the coursework or certification path can offer tangible proof to prospective employers that you possess the skills needed to build the technology they require. And by experimenting on your own and using available resources, you sharpen your skills in various areas of Java technology. The following resources should help either endeavor:

  • Tutorials and articles
    • developerWorks offers a world of hands-on, Java-based tutorials — the next best learning experience to writing the code yourself. For a comprehensive introduction to the Java language, Roy Miller's "Introduction to Java programming" and "Intermediate Java programming" tutorials should get you started.

    • The Magic with Merlin and Taming Tiger series are excellent references for sharpening your Java programming claws.

    • Translating design theory into practical application(s) is the focus of the Java theory and practice series.

    • Java programmers are wise to design applications with integrated bug detection and testing. developerWorks offers a collection of columns on Java debugging (focusing on a tool known as bug patterns) called Diagnosing Java code. Other helpful resources for learning about this topic include Andrew Glover's In pursuit of code quality column series and the Testing with leverage articles from Brian Goetz. "Kill bugs dead" is an article by the same author, and "Automation for the people is a column series that introduces tools for automating the design and development process.

    • Java development 2.0 is a column series dedicated to the changing landscape of Java technology. The series is particularly good for learning about Java-compatible open source frameworks and deployment infrastructures that let you assemble, test, run, and maintain Java applications quickly and inexpensively, without engaging the Java platform in its entirety.
    • Neal Ford's Evolutionary architecture and emergent design column series takes a rich, conceptual overview of Java-based design and development.

  • Books and Web sites
    • No better place to start than with "Essential Java Resources," a comprehensive listing of must-have books, sites, blogs, events, and more.

  • Community and networking
    • My developerWorks is a new way to connect and interact with your fellow developers. Creating your own personal profile and custom home page gets you instant access to the people, feeds, tags, bookmarks, blogs, groups, forums, etc. that you care about. Here's some of what My developerWorks has to offer:

      • Groups: Micro user communities focused on software projects, development activity, and other technical subjects of interest. Join a group or start your own.

      • Blogs: Follow technical experts, software projects, or personal musings on technology

      • Forums: A place to connect directly with other developers and exchanges questions and knowledge. Forums for the Java technology zone focus on topics like code quality, server-side Java programming, and Java security.

      • Wikis: An easy way for you and your peers to share information on topics of interest to developers. Use the wikis to get the information you need. Help make the wikis a valuable resource for the entire developerWorks community.

    • Games
  • Training, seminars, and conferences

    • IBM technical training
      • Choose among a wide variety of online, classroom, and multimedia-based Java courses offered by IBM Global Services.

    • Certification training
      • If you're thinking about certifying your Java skills, you can take several exams. Visit the Java Certification site to locate certification training resources.

      • IBM offers professional certification in such related technologies as WebSphere development (for enterprise Java applications), IBM Rational software, DB2, XML, and SOA.

    • No Fluff, Just Stuff: Nowhere else will the Java developer find the same intense focus on technical topics at a better price point or held in a more convenient location: Your home town.

    • JavaOne: Though its continued existence is debated due to the Oracle acquisition of Sun, no other gathering brings quite as many key Java movers-and-shakers together into one place like JavaOne does. If it lives on, you should attend at least once.

    • JAOO or its sister conference, QCon: If you're looking to stretch your viewpoint, these conferences offer a cross-technology opportunity, in addition to being more convenient to European developers. Sit in on a Java session in the morning, chat with some C++ developers over lunch, catch the latest developments on Microsoft's Silverlight (or whatever else is new) in the afternoon, and share some beer with Smalltalkers in the evening.

    • Devoxx: The winter version of JavaOne? This conference in Antwerp, Belgium retains great speakers and has been, of late, the place to find out what Sun is up to with regard to Java 7.


Back to top



What IBM tools and products are available for Java programmers?

IBM is a leading innovator in the use of Java technology. The section below highlights tools and products IBM offers to Java developers.

  • No-charge downloads

    • The Kick-start Your Java Apps suite — DB2 Express-C, WebSphere Application Server Community Edition, and the Eclipse IDE — gives you everything you need to get simple Java Web applications and Web services up and running today.

    • Java Developer Kits are offered by IBM for creating and testing Java SE applets and applications and Java ME applications on popular platforms, including Windows, Linux, and AIX.

    • IBM Monitoring and Diagnostic Tools for Java is a complete diagnostic toolset that assists in the understanding, monitoring, and problem diagnosis of applications and deployments running IBM Runtime Environments for Java. The toolset consists of:

      • Health Center: A lightweight tool that monitors active IBM Virtual Machines for Java with minimal performance overhead.

      • Memory Analyzer: A powerful and flexible tool for analyzing Java heap memory using system dump or heap dump snapshots of a Java process.

      • Garbage Collection and Memory Visualizer (GCMV): Used to monitor and fine-tune Java heap size and garbage collection performance.

      • Dump Analyzer: A tool that helps you determine the cause of a Java application failures using an operating system level dump.

    • IBM Development Package for Eclipse is an unsupported Eclipse-based development tool that enables developers to build and run Java applications with its ready-to-run development environment out of the box.

    • Simultaneous release projects from Eclipse lets you download free Eclipse open source software bundles from developerWorks, including Galileo, Ganymede, Callisto, and Europa simultaneous release projects.

    • Java technology on alphaWorks is a virtual warehouse of emerging IBM-generated Java-related technologies, including APIs, integrated development environments and devkits, components, reference implementations, and utilities. Here are just a few:

  • IBM Rational tools are built on the Eclipse 3.0 platform and can help make it easier to develop, test, and deploy high-quality applications. Rational tools for Java developers include:

  • WebSphere Application Server is a fully featured Java EE-certified application server that delivers the secure, scalable, resilient application infrastructure enterprises need for a service-oriented architecture. Learn more about Java development tools for the WebSphere family:

  • IBM Information Management software is a powerful family of relational database management system (RDBMS) servers along with software for data warehousing, data analysis, data mining, media asset management, enterprise content management, and information integration. IBM Information Management software supports Java programming, including client applications, server-side capabilities, and tools to make development and deployment easier:

    • DB2 UDB is a natural fit for an open, standards-based business.

    • IBM Informix software delivers superior database performance for transaction-intensive environments.

    • IBM InfoSphere integrates and transforms data improving productivity, flexibility and performance, so you have the right information for your business.

Back to top


Document options

Document options requiring JavaScript are not displayed


My developerWorks needs you!

Connect to your technical community


developerWorks spaces
Learn, collaborate, and lead the way

More resources
Java SE
Java EE
Java ME
Java Community Process (JCP)
Java certification
Eclipse.org

Special offers
Podcasts: Interviews and discussions on vital topics
New Web 2.0 tools
WebSphere sMash
and more!
Learn fast with free IBM Java Tutorials

Trial software offers