IBM Websphere and Visualage for Java Database Integration with DB2, Oracle, and SQL Server

Total Page:16

File Type:pdf, Size:1020Kb

IBM Websphere and Visualage for Java Database Integration with DB2, Oracle, and SQL Server IBM WebSphere and VisualAge for Java Database Integration with DB2, Oracle, and SQL Server Ueli Wahli, Tobias Himstedt, Sean Lee, Amir Razmara International Technical Support Organization www.redbooks.ibm.com SG24-5471-00 SG24-5471-00 International Technical Support Organization IBM WebSphere and VisualAge for Java Database Integration with DB2, Oracle, and SQL Server September 1999 Take Note! Before using this information and the product it supports, be sure to read the general information in Appendix B, “Special Notices” on page 269. First Edition (September 1999) This edition applies to • IBM WebSphere Application Server Version 2.0.2 • IBM WebSphere Studio Version 3.0 beta 2 • VisualAge for Java Version 2 with Rollup 2 and Enterprise Update • DB2 Universal Database Version 5.2 • Oracle Version 8 • Microsoft SQL Server Version 7 for use with the Windows NT Operating System, Service Pack 4. Sample Code on the Internet: The sample code for this redbook is available as 5471samp.zip file on the ITSO home page on the Internet: ftp://www.redbooks.ibm.com/redbooks/SG245471/ Download the sample code and read Chapter 3, “ITSO Sample Applications” on page 15. Comments may be addressed to: IBM Corporation, International Technical Support Organization Dept. QXXE Building 80-E2 650 Harry Road San Jose, California 95120-6099 When you send information to IBM, you grant IBM a non-exclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. © Copyright International Business Machines Corporation 1999. All rights reserved. Note to U.S Government Users – Documentation related to restricted rights – Use, duplication or disclosure is subject to restrictions set forth in GSA ADP Schedule Contract with IBM Corp. Contents Figures .................................................. ix Tables ..................................................xvii Preface ................................................. xix TheTeamThatWroteThisRedbook...............................xx CommentsWelcome............................................xxi Part 1. Introduction to IBM WebSphere and VisualAge for Java .1 Chapter 1. HTTP Server and WebSphere Application Server....3 Environment...................................................3 IBMHTTPServer...............................................4 Installation.................................................4 Configuration...............................................4 IBMWebSphereApplicationServer................................5 WebSphereInstallation.......................................5 WebSphereConfiguration.....................................6 WebSphereConfigurationforJDBC.............................7 StartingandStoppingWebSphere..............................8 Chapter 2. VisualAge for Java Enterprise Version 2 ............9 VisualAgeforJavaInstallation...................................10 VisualAgeforJavaConfigurationforJDBC.........................10 VisualAgeforJavaConfigurationforWebSphere....................10 WebSphereinVisualAgeforJava.................................11 DefaultDirectoriesforServletsandJSPfiles....................11 CompiledJSPs.............................................12 RunningServletsinVisualAgeforJava.........................12 Chapter 3. ITSO Sample Applications ........................15 SampleCode...............................................16 RepositoryExportFiles......................................17 © Copyright IBM Corp. 1999 iii Part 2. Database Setup and JDBC.............................19 Chapter 4. Relational Database Installation and Setup ........21 DB2UDBInstallation..........................................22 DB2UDBDatabaseSetup....................................22 DB2UDBTableCreation.....................................24 LoadingtheTableDataIntoDB2..............................26 DB2JDBCDrivers..........................................26 Oracle8Installation............................................27 OracleDatabaseSetup.......................................27 OracleTableCreation.......................................29 ImportingtheTableDataintoOracle...........................31 OracleJDBCDrivers........................................32 SQLServerInstallation.........................................33 SQL Server Database Setup ..................................33 SQLServerTableCreation...................................34 ImportingtheTableDataintoSQLServer.......................35 SQLServerJDBCDrivers....................................38 ODBCDataSourceSetupforJDBC............................38 Chapter 5. Java Database Connectivity.......................43 DB2UDBJDBCDrivers........................................44 DB2ApplicationDriver......................................44 DB2NetworkDriver.........................................45 OracleJDBCDrivers...........................................46 OracleThinClientDriver....................................46 OracleOCIDriver...........................................46 SQLServerJDBCDrivers.......................................47 ConfiguringVisualAgeforJavaforJDBC..........................48 ConfiguringWebSphereforJDBC.................................49 Part 3. Database Programming Examples .....................51 Chapter 6. JDBC Programming Examples ....................53 SimpleJDBCApplication........................................53 DB2UniversalDatabaseJDBCCodeExample......................56 OracleJDBCCodeExample......................................57 SQLServerJDBCCodeExample.................................58 RunningApplicationswithJDBC.................................60 TestingtheJDBCApplicationsinVisualAgeforJava..............60 RunningtheJDBCApplicationsintheOperatingSystem..........60 SimpleJDBCServlet...........................................61 iv IBM WebSphere and VisualAge for Java Database Integration with DB2, Oracle, and SQL Server TestingtheServletinVisualAgeforJava.......................63 RunningtheServletinWebSphere.............................63 Chapter 7. IBM Connection Manager .........................65 Configuration.................................................67 ConnectionPool............................................67 IBMConnectionManagerandPureJDBC..........................69 IBMConnectionManagerExamples...............................70 UsingtheIBMConnectionManager............................70 HTMLFileforAccessingtheServlets...........................71 RunningtheExample........................................72 DbaseConnMgrClass........................................73 DB2......................................................77 Oracle....................................................79 MicrosoftSQLServer........................................79 Chapter 8. Data Access Beans: VisualAge for Java ............81 LoadingtheDataAccessBeanFeature.............................82 DataAccessBeansandtheStandardSQLClasses...................82 DatabaseConnectionandjava.sql.Connection....................83 StatementTypes............................................85 ResultSetTypes............................................85 BuildingaServletusingDataAccessBeans.........................86 SampleDataAccessBeans...................................86 CreatingaServletVisuallyusingDataAccessBeans..............86 UsingtheConnectionManagerandDataAccessBeans...............98 ClassDefinition............................................98 Initialization...............................................99 FormParameterAccess.....................................100 FormProcessing...........................................101 EmployeeRetrieval.........................................102 EmployeeUpdate..........................................105 TestingtheServlet.........................................106 DeployingServletstoWebSphere................................107 Chapter 9. Persistence Builder: VisualAge for Java ..........109 WhatisPersistence?...........................................110 UsingDatabasestoProvidePersistence...........................110 PersistenceBuilderTools.......................................110 VendorSpecificConsiderations..................................111 PersistenceBuilderExample:EmployeesinDepartment.............112 ImporttheSchema.........................................112 GenerateandValidatetheObjectModel.......................115 InspecttheMap...........................................116 v GeneratetheJavaCodefortheObjectModel...................118 GeneratetheJavaCodefortheServiceClasses..................119 BuildtheServlet...........................................121 Changing the Datastore Database................................127 DeployingaServlettoWebSphere...............................128 Chapter 10. Enterprise JavaBeans ..........................131 EnterpriseJavaBeansfromaBird’s-EyePerspective................132 ACloserLook................................................132 DevelopingaContainerManagedPersistenceEntityBean...........133 SetupofVisualAgeforJava..................................134 CreateaDepartmentEnterpriseBean.........................135 AddthePropertiesandMethodstotheBean....................137 MaptheBeantotheSchema.................................140 GeneratetheCodeandTest..................................143 DeploytheEnterpriseBeantoWebSphere.........................149 AccesstheDepartmentBeanfromaServlet........................153 ClassDeclaration..........................................153 PerformTaskMethod.......................................154 Initialization..............................................154
Recommended publications
  • IBM Developer for Z/OS Enterprise Edition
    Solution Brief IBM Developer for z/OS Enterprise Edition A comprehensive, robust toolset for developing z/OS applications using DevOps software delivery practices Companies must be agile to respond to market demands. The digital transformation is a continuous process, embracing hybrid cloud and the Application Program Interface (API) economy. To capitalize on opportunities, businesses must modernize existing applications and build new cloud native applications without disrupting services. This transformation is led by software delivery teams employing DevOps practices that include continuous integration and continuous delivery to a shared pipeline. For z/OS Developers, this transformation starts with modern tools that empower them to deliver more, faster, with better quality and agility. IBM Developer for z/OS Enterprise Edition is a modern, robust solution that offers the program analysis, edit, user build, debug, and test capabilities z/OS developers need, plus easy integration with the shared pipeline. The challenge IBM z/OS application development and software delivery teams have unique challenges with applications, tools, and skills. Adoption of agile practices Application modernization “DevOps and agile • Mainframe applications • Applications require development on the platform require frequent updates access to digital services have jumped from the early adopter stage in 2016 to • Development teams must with controlled APIs becoming common among adopt DevOps practices to • The journey to cloud mainframe businesses”1 improve their
    [Show full text]
  • IMS Connector for Java User's Guide and Reference
    IBM VisualAge® for Java™,Version3.5 IMSConnectorforJava User’s Guide and Reference Note! Before using this information and the product it supports, be sure to read the general information under Notices. Edition notice This edition applies to Version 3.5 of IBM VisualAge for Java and to all subsequent releases and modifications until otherwise indicated in new editions. © Copyright International Business Machines Corporation 1998, 2000. All rights reserved. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Chapter 1. Understanding IMS Connector for Java ...........1 Prerequisites for using IMS Connector for Java .............3 IMS Connector for Java concepts and terms ..............4 Chapter 2. Preparing to use IMS Connector for Java ..........17 Preparing your VisualAge for Java Environment .............17 Preparing your WebSphere Studio Environment .............21 Preparing your WebSphere Application Server Environment ........22 Chapter 3. Building Java applications and servlets ..........31 Building Java Applications and Servlets for Conversational Transactions ....32 Chapter 4. Building a Java Application to Run an IMS Transaction ....35 Chapter 5. Building a Java Application to Run a Navigator .......53 Chapter 6. Building a Java Application for an IMS Transaction with Multi-Segment Output Messages.................69 Chapter 7. Building a Java Application for an IMS Transaction with Multi-Segment Input Messages .................75 Chapter 8. Building an Application to Run an IMS Transaction with Synchronization Level Confirm .................81 Chapter 9. Building the Graphical User Interface ...........87 Chapter 10. Building a Java Servlet to Run an IMS Transaction .....95 Chapter 11. Building a Web Application that Uses One Servlet to Run an IMS Conversation ......................107 Chapter 12.
    [Show full text]
  • Netezza EOL: IBM IAS Is a Flawed Upgrade Path Netezza EOL: IBM IAS Is a Flawed Upgrade Path
    Author: Marc Staimer WHITE PAPER Netezza EOL: What You’re Not Being Told About IBM IAS Is a Flawed Upgrade Path Database as a Service (DBaaS) WHITE PAPER • Netezza EOL: IBM IAS Is a Flawed Upgrade Path Netezza EOL: IBM IAS Is a Flawed Upgrade Path Executive Summary It is a common technology vendor fallacy to compare their systems with their competitors by focusing on the features, functions, and specifications they have, but the other guy doesn’t. Vendors ignore the opposite while touting hardware specs that mean little. It doesn’t matter if those features, functions, and specifications provide anything meaningfully empirical to the business applications that rely on the system. It only matters if it demonstrates an advantage on paper. This is called specsmanship. It’s similar to starting an argument with proof points. The specs, features, and functions are proof points that the system can solve specific operational problems. They are the “what” that solves the problem or problems. They mean nothing by themselves. Specsmanship is defined by Wikipedia as: “inappropriate use of specifications or measurement results to establish supposed superiority of one entity over another, generally when no such superiority exists.” It’s the frequent ineffective sales process utilized by IBM. A textbook example of this is IBM’s attempt to move their Netezza users to the IBM Integrated Analytics System (IIAS). IBM is compelling their users to move away from Netezza. In the fall of 2017, IBM announced to the Enzee community (Netezza users) that they can no longer purchase or upgrade PureData System for Analytics (the most recent IBM name for its Netezza appliances), and it will end-of-life all support next year.
    [Show full text]
  • DB2 UDB V8 and Websphere V5 Performance Tuning and Operation Guide
    Front cover DB2 UDB V8 and WebSphere V5 Performance Tuning and Operation Guide Best performance tuning practices for DB2 UDB and WAS integrated environment Gets you smoothly up and running DB2 UDB and WAS together Problem determination scenarios Whei-Jen Chen Peter Z. He Kang Yong Ying Sunminder S Saini Andreas Paulsen ibm.com/redbooks International Technical Support Organization DB2 UDB V8 and WebSphere V5 Performance Tuning and Operation Guide March 2004 SG24-7068-00 Note: Before using this information and the product it supports, read the information in “Notices” on page ix. First Edition (March 2004) This edition applies to IBM DB2 Universal Database Version 8.1 and IBM WebSphere Server V5.0.2, for use with IBM AIX 5.1 and Windows 2000 operating systems. © Copyright International Business Machines Corporation 2004. All rights reserved. Note to U.S. Government Users Restricted Rights -- Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Notices . ix Trademarks . x Preface . xi The team that wrote this redbook. xii Become a published author . xiv Comments welcome. xv Chapter 1. Introduction. 1 1.1 IBM On Demand era . 2 1.1.1 The IBM On Demand operating environment . 2 1.2 Why DB2 UDB and WebSphere . 9 1.3 Key areas of performance . 10 1.3.1 Hardware. 11 1.3.2 Operating system . 11 1.3.3 Application Server and WebServer . 12 1.3.4 Database manager . 13 1.3.5 Application programs . 13 1.4 Performance tuning guidelines . 14 1.4.1 Initial efforts always pay . 14 1.4.2 Tune the identified constraints .
    [Show full text]
  • SAP Database Administration with IBM
    André Faustmann, Michael Greulich, André Siegling, Benjamin Wegner, and Ronny Zimmerman SAP® Database Administration with IBM® DB2® Bonn Boston Contents at a Glance 1 Introduction ............................................................................ 19 2 SAP System Landscapes ......................................................... 25 3 Basics and Architecture of the IBM DB2 for LUW Database ................................................................................. 71 4 Lifecycle ................................................................................. 233 5 Administration Tools Inside and Outside the SAP System .... 327 6 Backup, Restore, and Recovery .............................................. 463 7 Monitoring DB2 SAP Systems with SAP Solution Manager .................................................................................. 575 8 SAP NetWeaver Business Warehouse and IBM DB2 for LUW .................................................................................. 647 9 Common Problems and Their Solutions for DB2 Administrators ........................................................................ 697 Contents Foreword .................................................................................... 15 Acknowledgments ....................................................................... 17 1 Introduction ................................................................. 19 1.1 Who This Book Is For .................................................... 21 1.2 Focus of This Book .......................................................
    [Show full text]
  • Troubleshooting Websphere Applications
    IBM WebSphere Application Server Network Deployment for Distributed Platforms, Version 8.0 Troubleshooting WebSphere applications Note Before using this information, be sure to read the general information under Notices” on page 349. Compilation date: July 29, 2011 © Copyright IBM Corporation 2011. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents How to send your comments ...........................vii Changes to serve you more quickly .........................ix Chapter 1. Troubleshooting ActivitySessions......................1 Troubleshooting ActivitySessions ...........................1 Chapter 2. Troubleshooting Application profiling ....................3 Application profiling exceptions ............................3 Chapter 3. Troubleshooting batch applications .....................5 Troubleshooting batch applications ..........................5 Adding log and trace settings to the batch environment ..................5 Batch common problems .............................5 Diagnosing problems using job logs .........................7 Chapter 4. Troubleshooting applications that use the Bean Validation API ..........9 Bean validation troubleshooting tips ..........................9 Chapter 5. Troubleshooting Client applications ....................11 Application client troubleshooting tips .........................11 Adding tracing and logging for stand-alone clients ....................17 Chapter 6. Troubleshooting Data access resources...................19
    [Show full text]
  • AD112 Development and Deployment of Lotus Product Documentation Wikis
    AD112 Development and Deployment of Lotus Product Documentation Wikis Craig Lordan | Manager Kevin Giles | Advisory Software Engineer 2 12 Agenda 11 1 10 2 ● Background 9 3 ▬ IBM Lotus® product wikis overview 8 4 ▬ 7 5 Your speakers today 6 ▬ IBM Lotus® Domino® infrastructure ● Lotus Domino wiki application development ▬ First pass at Lotus Domino wikis ▬ Benefits of XPages for wikis ▬ XPages Wiki template on OpenNTF ▬ Custom development examples ● Real-world experience ▬ XPages deployment experience ▬ Our XPages lessons ▬ What about wikis in IBM Lotus® Connections? ● Project future ● Q&A 3 Lotus product wikis overview ● Product wikis for all Lotus and IBM WebSphere® Portal products ● Live on the Internet, open to all customers and users ▬ Visit www.lotus.com/ldd/wikis ● Added first wiki for IBM Lotus® Notes® and Lotus Domino in December 2007 ● Additional wikis added in 2008 ● Current content includes supplemental technical content and IBM Redbooks® Wiki listing IBM Composite Applications IBM Lotus Notes ● IBM LotusLive™ IBM Lotus Notes Traveler Plan is to use wikis for official product IBM Mashup Center IBM Lotus® Quickr IBM Lotus® ActiveInsight® IBM Lotus® Sametime® documentation Lotus Connections IBM Lotus® Symphony Lotus Domino IBM Lotus® Web Content ▬ IBM Lotus Domino Designer Management IBM Lotus® Expeditor, IBM Lotus® Foundations, Lotus Expeditor IBM Lotus® Workforce Management IBM Mashup Center already publish product doc to IBM Lotus® Forms IBM WebSphere Dashboard Lotus Foundations Framework wikis IBM Lotus® iNotes® WebSphere Portal IBM Lotus® Mobile Connect IBM WebSphere® Portlet Factory 4 Your speakers today ● Craig Lordan, Manager ▬ Craig Lordan is a manager at IBM Lotus. He joined Lotus in 1998 as a technical writer for Lotus Notes and Lotus Domino.
    [Show full text]
  • IBM Notes Traveler Administration
    IBM C2040-412 IBM Notes Traveler Administration IBM C2040-412 Dumps Available Here at: https://www.certification-questions.com/ibm-exam/c2040-412-dumps.html Enrolling now you will get access to 118 questions in a unique set of C2040-412 dumps Question 1 Which option describes how a load balancer is used for an IBM Notes Traveler High Availability (HA) implementation? Options: A. secures connections between Notes Traveler servers and IBM Domino mail servers B. spreads the user to server connections across multiple Notes Traveler HA Pool members C. balances mail server traffic between Notes Traveler servers and clustered Domino mail servers D. spreads large amounts of data across multiple Notes Traveler servers when users are synchronizing a large attachment to a device Answer: B Question 2 Once IBM Notes Traveler servers are put into production, what average percentage should the CPU be below? Options: A. 65 B. 75 C. 85 D. 95 Answer: B Question 3 https://www.certification-questions.com IBM C2040-412 What is the minimum number of servers recommended for an IBM Notes Traveler 9.0 Service Pool, IBM Domino mail and database server with high availability for all components on Microsoft Windows or Linux platforms? Options: A. 5 B. 6 C. 7 D. 11 Answer: C Question 4 IBM Notes Traveler mobile client to server traffic is secured over which protocol? Options: A. Secure Socket Layer (SSL) B. Post Office Protocol 3 (POP3) C. HyperText Transfer Protocol (HTTP) D. Notes Remote Procedure Call (NRPC) Answer: A Question 5 How can an administrator ensure that the network communication between the IBM Notes Traveler server and the mail servers is optimized? Options: A.
    [Show full text]
  • IBM DB2 for Z/OS: the Database for Gaining a Competitive Advantage!
    Why You Should Read This Book Tom Ramey, Director, DB2 for z/OS IBM Silicon Valley Laboratory “This book is a ‘must read’ for Enterprise customers and contains a wealth of valuable information! “It is clear that there is a technology paradigm shift underway, and this is opening enormous opportunities for companies in all industries. Adoption of Cloud, Mobile, and Analytics promises to revolutionize the way we do business and will add value to a company’s business processes across all functions from sales, marketing, procurement, manufacturing and finance. “IT will play a significant role enabling this shift. Read this book and find out how to integrate the heart of your infrastructure, DB2 for z/OS, with new technologies in order to maximize your investment and drive new value for your customers.” Located at IBM’s Silicon Valley Laboratory, Tom is the director of IBM’s premiere relational database management system. His responsibilities include Architecture, Development, Service, and Customer Support for DB2. He leads development labs in the United States, Germany, and China. Tom works closely with IBM’s largest clients to ensure that DB2 for z/OS continues as the leading solution for modern applications, encompassing OLTP to mobile to analytics. At the same time he continues an uncompromising focus on meeting the needs of the most demanding operational environments on Earth, through DB2’s industry- leading performance, availability, scaling, and security capabilities. IBM DB2 for z/OS: The Database for Gaining a Competitive Advantage! Shantan Kethireddy Jane Man Surekha Parekh Pallavi Priyadarshini Maryela Weihrauch MC Press Online, LLC Boise, ID 83703 USA IBM DB2 for z/OS: The Database for Gaining a Competitive Advantage! Shantan Kethireddy, Jane Man, Surekha Parekh, Pallavi Priyadarshini, and Maryela Weihrauch First Edition First Printing—October 2015 © Copyright 2015 IBM.
    [Show full text]
  • Eclipse Project Briefing Materials
    [________________________] Eclipse project briefing materials. Copyright (c) 2002, 2003 IBM Corporation and others. All rights reserved. This content is made available to you by Eclipse.org under the terms and conditions of the Common Public License Version 1.0 ("CPL"), a copy of which is available at http://www.eclipse.org/legal/cpl-v10.html The most up-to-date briefing materials on the Eclipse project are found on the eclipse.org website at http://eclipse.org/eclipse/ 200303331 1 EclipseEclipse ProjectProject 200303331 3 Eclipse Project Aims ■ Provide open platform for application development tools – Run on a wide range of operating systems – GUI and non-GUI ■ Language-neutral – Permit unrestricted content types – HTML, Java, C, JSP, EJB, XML, GIF, … ■ Facilitate seamless tool integration – At UI and deeper – Add new tools to existing installed products ■ Attract community of tool developers – Including independent software vendors (ISVs) – Capitalize on popularity of Java for writing tools 200303331 4 Eclipse Overview Another Eclipse Platform Tool Java Workbench Help Development Tools JFace (JDT) SWT Team Your Tool Plug-in Workspace Development Debug Environment (PDE) Their Platform Runtime Tool Eclipse Project 200303331 5 Eclipse Origins ■ Eclipse created by OTI and IBM teams responsible for IDE products – IBM VisualAge/Smalltalk (Smalltalk IDE) – IBM VisualAge/Java (Java IDE) – IBM VisualAge/Micro Edition (Java IDE) ■ Initially staffed with 40 full-time developers ■ Geographically dispersed development teams – OTI Ottawa, OTI Minneapolis,
    [Show full text]
  • Response to IBM's Whitepaper Entitled Benchmarking and Beating Microsoft .NET 3.5 with Websphere 7
    MICROSOFT Response to IBM’s Whitepaper Entitled Benchmarking and Beating Microsoft .NET 3.5 with WebSphere 7 7/2/2009 This document is a response to an IBM Benchmark Rebuttal Document to our original benchmark results published at http://msdn.microsoft.com/stocktrader. Microsoft stands behind the original test results published there. This document is the Microsoft response, point-for-point, to the IBM response to our original results, and includes new benchmark data as further evidence. Contents Executive Summary ....................................................................................................................................... 4 Introduction .................................................................................................................................................. 6 The Microsoft Findings.................................................................................................................................. 8 Response to IBM Rebuttal ............................................................................................................................ 9 IBM Friendly Bank Benchmark .................................................................................................................. 9 Microsoft Comments on IBM Friendly Bank Rebuttal Benchmark ........................................................... 9 IBM CPO StockTrader/.NET Benchmark.................................................................................................. 11 Microsoft Comments on IBM CPO StockTrader
    [Show full text]
  • Eclipse (Software) 1 Eclipse (Software)
    Eclipse (software) 1 Eclipse (software) Eclipse Screenshot of Eclipse 3.6 Developer(s) Free and open source software community Stable release 3.6.2 Helios / 25 February 2011 Preview release 3.7M6 / 10 March 2011 Development status Active Written in Java Operating system Cross-platform: Linux, Mac OS X, Solaris, Windows Platform Java SE, Standard Widget Toolkit Available in Multilingual Type Software development License Eclipse Public License Website [1] Eclipse is a multi-language software development environment comprising an integrated development environment (IDE) and an extensible plug-in system. It is written mostly in Java and can be used to develop applications in Java and, by means of various plug-ins, other programming languages including Ada, C, C++, COBOL, Perl, PHP, Python, Ruby (including Ruby on Rails framework), Scala, Clojure, and Scheme. The IDE is often called Eclipse ADT for Ada, Eclipse CDT for C/C++, Eclipse JDT for Java, and Eclipse PDT for PHP. The initial codebase originated from VisualAge.[2] In its default form it is meant for Java developers, consisting of the Java Development Tools (JDT). Users can extend its abilities by installing plug-ins written for the Eclipse software framework, such as development toolkits for other programming languages, and can write and contribute their own plug-in modules. Released under the terms of the Eclipse Public License, Eclipse is free and open source software. It was one of the first IDEs to run under GNU Classpath and it runs without issues under IcedTea. Eclipse (software) 2 Architecture Eclipse employs plug-ins in order to provide all of its functionality on top of (and including) the runtime system, in contrast to some other applications where functionality is typically hard coded.
    [Show full text]