- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- What's the difference between Java 2 SDK and Java ...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-23-2005 07:36 AM
тАО06-23-2005 07:36 AM
What's the difference between Java 2 SDK and Java 2 RTE?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-23-2005 07:42 AM
тАО06-23-2005 07:42 AM
Re: What's the difference between Java 2 SDK and Java 2 RTE?
RTE = Run Time Environment
If you are developing Java Apps then I would install the SDK.
If you are not developing in Java, and just need to run Java apps, then I would install the RTE.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-23-2005 07:43 AM
тАО06-23-2005 07:43 AM
Re: What's the difference between Java 2 SDK and Java 2 RTE?
Well, SDK is the full-blown developers kit whereas RTE is the run-time version & does not support development per-se. SDK is a superset of RTE if you will.
As a rule you want/need SDK on development systems but *not* on production systems. You don't want developers "tinkering" with code on production systems after it's been promoted up there.
But having said that we've had occasion where the code being promoted required certain libraries that were only included with the SDK version. So we'd load that version in production & remove the development tools such that developers couldn't mess with the code on the prod servers.
My 2 cents,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-23-2005 07:49 AM
тАО06-23-2005 07:49 AM
Re: What's the difference between Java 2 SDK and Java 2 RTE?
you probably install RTE only, if test env, then install SDK and RTE, production should never have the compiler
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-23-2005 07:50 AM
тАО06-23-2005 07:50 AM
Re: What's the difference between Java 2 SDK and Java 2 RTE?
Thanks Mr. Wallek and Mr. Schussele