|
Related YoLinux Tutorials:
°TomCat Tutorial
°IBM Websphere
°Java WAR files
°YoLinux Tutorials Index
Free Information Technology Magazines and Document Downloads
Free Information Technology Software and Development Magazine Subscriptions and Document Downloads
|
| Java Virtual Machines and Tools: |
JVM/JDK: Java Virtual Machines (JVM) and Software Development Kits (SDK)
Java Build Tools:
Java Tools:
- Quest: JProbe - Profiler, Debugger, Threadalyzer. Supports Blackdown, Sun, IBM JDK's
- Quest: JClass
- Java components (Tables, charts, graphics, database front-ends, text
fields) Supports Borland, IBM Visual Age, SUN IDE's and
Netscape/Explorer browsers
- Micro Focus: DevPartner
- Distributed application, memory, performance, code coverage and
thread deadlock detection and analysis. Also supports Oracle PL/SQL and
Java stored procedure applications.
- CodeMesh - A make Java and C++ work together product.
- SeaGullSoftware.com: LegaSuite -
J2EE based, XML driven process execution and Workflow Automation framework which
can be deployed on a multitude of J2EE servers.
Java Installers:
- cminstall - cross platform installers based on Java.
- OpenInstaller - framework for building cross platform installers.
- BitRock: Install Builder - generate an installer for any platform (MS/Windows, Linux, Unix, Mac, ...). RPM integration. Supports Java applications as well as support for many other languages.
- Install4j - multi-platform Java installer.
- Flexera: InstallAnywhere - Multi-platform Java software installation tool for software distribution. Includes JVM installation if necessary.
Java Test Tools:
- JUnit - Software development unit testing tool.
- Apache.org: Gump -
Continuous build and integration tool for Java. Interfaces with CVS or
Subversion. Supports Ant and Maven. Will show which check-in breaks the
build.
- Abbot - Java
JUnit extension to support GUI test framework. Uses an AWT robot class
to test code. (Review: Java Developer Journal Apr. 2003)
- Pounder.sourceforge.net - Utility for automating Java GUI tests
- Test Coverage Tools:
Test coverage tools report on which parts of the code
were "covered" or executed during software test suite execution.
Typical reports detail routines executed and a percentage of the code
executed. Helps assess test reliability (how effective was the test in
testing all of the code) and helps find dead code.
- EMMA - Coverage at line, block, method, class and package level.
- Quilt.Sourceforge.net: JUnit-Quilt
- Provides Code Coverage information off of a JUnit Unit Test.
Statement and Branch coverage. Operates on Java Byte code.(Commercial)
| Installing the Java Software Developers Kit (SDK): |
Sun has various bundled Java packages available for download: Java Standard Edition (SE), Java Runtime Environment (JRE), Software Development Kit (SDK), EE (Enterprise Edition), JavaFX, Netbeans (IDE) or just the bundle: Java SE and JDK development kit, used in this example.
Note that the Java Runtime Environment (JRE) by itself is not for software development but only a JVM to run Java applications.
Download Java "Standard Edition" (SE) Software Developers Kit (SDK).
The Java "Enterprise Edition" with Glassfish application server is also available for Java web services development.
The installation of multiple versions of Java on different machines will require a ".bashrc" file which can locate the appropriate CLASSPATH.
-
Example file: $HOME/.bashrc
..
...
#
# Java
#
if [ -d /opt/java/latest ]
then
PATH=/opt/java/latest/bin:$PATH
export JAVA_HOME=/opt/java/latest
export CLASSPATH=/opt/java/latest/lib/tools.jar:./
elif [ -d /opt/java/jdk1.6.0_01 ]
then
PATH=/opt/java/jdk1.6.0_01/bin:$PATH
export JAVA_HOME=/opt/java/jdk1.6.0_01
export CLASSPATH=/opt/java/jdk1.6.0_01/lib/tools.jar:./
elif [ -d /usr/java/jdk1.6.0 ]
then
PATH=/usr/java/jdk1.6.0/bin:$PATH
export JAVA_HOME=/usr/java/jdk1.6.0
export CLASSPATH=/usr/java/jdk1.6.0/lib/tools.jar:./
elif [ -d /usr/lib/jvm/jre-1.4.2-sun/bin ]
then
PATH=/usr/lib/jvm/jre-1.4.2-sun/bin:$PATH
export JAVA_HOME=/usr/lib/jvm/jre-1.4.2-sun
export CLASSPATH=/usr/lib/jvm/jre-1.4.2-sun/lib/tools.jar:/usr/lib/jvm/jre-1.4.2-sun/lib/rt.jar:./
fi
...
..
|
Where the following soft link is typical: ln -s /opt/java/jdk1.6.0_01 /opt/java/latest
Must include "./" in CLASSPATH. This is necessary in 1.4.x and later.
Java SDK 1.6:
There is a choice of running 32 bit Java on a 32 bit or 64 bit Linux platform or running 64 bit Java on a 64 Linux bit platform.
There are three options offered for the download:
- compressed tar file: jdk-7u4-linux-x64.tar.gz
Install:
- cd /opt/java
- tar xzf ~/Downloads/jdk-7u4-linux-x64.tar.gz
This creates: /opt/java/jdk1.7.0_04/...
- self extracting binary RPM jdk-6u17-linux-x64-rpm.bin
Install:
- Allow permissions to execute the binary package: chmod +x jdk-6u17-linux-x64-rpm.bin
- Execute the binary package: ./jdk-6u17-linux-x64-rpm.bin
- Creates RPMs:
- jdk-6u17-linux-amd64.rpm
- sun-javadb-common-10.4.2-1.1.i386.rpm
- sun-javadb-core-10.4.2-1.1.i386.rpm
- sun-javadb-client-10.4.2-1.1.i386.rpm
- sun-javadb-demo-10.4.2-1.1.i386.rpm
- sun-javadb-docs-10.4.2-1.1.i386.rpm
- sun-javadb-javadoc-10.4.2-1.1.i386.rpm
- Installs RPMs to:
- /usr/java/jdk1.6.0_17
- /etc/.java/.systemPrefs
- /etc/init.d/jexec
- Derby Database support installs to: /opt/sun/javadb/
Note: all of the sun-javadb RPMs are related to Derby, the all Java database.
- self extracting binary bundle jdk-6u17-linux-x64.bin
This unpacks to a local directory ./jdk1.6.0_17/
Do this in directory /usr/java to get a similar installation to the RPM result /usr/java/jdk1.6.0_17
64 bit Workstation Tip:
This option of installing the bundle to a directory of your choice
is my preferred installation method for 64 bit Linux workstations as it
allows me to install both a 32 bit version and a 64 bit version
of Java.
On 64 bit Linux Workstations it is typical to use a 32 bit browser
which is compatible with the 32 bit Adobe Flash plug-in.
Also, only the 32 bit version of Java offers a browser plug-in for applet support.
Install to:
- 64 bit Java: /usr/java/64/... (or /opt/java/64/...)
- 32 bit Java: /usr/java/... (or /opt/java/...)
On 64-bit Linux platforms the 32-bit JDK and 64-bit JDK cannot co-exist when installed from the RPM bundles. One must install one or the other but not both RPMs.
You can install as many versions of the ".bin" bundle into distinct directories.
Install:
-
chmod +x jdk-6uxx-linux-xxxx-rpm.bin
./jdk-6uxx-linux-xxxx-rpm.bin
...
This is where you agree to their license. Press the space bar to scroll down in "More".
Do you agree the the above license terms? [yes or no]
yes
...
Hit the space bar to scroll through the agreement or press the letter "q" to skip ahead.
Test program: Test.java
-
public class Test
{
public static void main(String[] args)
{
System.out.println("Hello world");
}
}
|
Compile: javac Test.java
(or /usr/java/latest/bin/javac Test.java)
Note that the file name and the class name are the same. This became a
requirement back in SDK 1.4. The result of the compile is the file:
Test.class
Run:
-
[prompt]$ java Test Hello world
(or /usr/java/latest/bin/java Test)
[Potential Pitfall]:
Red Hat Enterprise Linux and other Linux systems which install GNU Java may
find that this conflicts with the Sun Java installation.
You may have to remove this (for example RHEL4):
rpm -e java-1.4.2-gcj-compat-1.4.2.0-27jpp java-1.4.2-gcj-compat-devel-1.4.2.0-27jpp.noarch
The newer RHEL5 uses OpenJDK and is a valid Java distribution based on Java 1.6.0.
Install: yum install java
The Java SDK includes the following commands:
- javac: Linux Java compiler (i.e. javac program-name.java)
- java: Byte code interpreter / Java program launcher. (i.e. java program-name Do not include ".class" extension.)
Test version: java -version
- appletviewer: Views Java applet embedded in html file. (appletviewer myfile.html)
- javaws: Java Web Start application manager. Java application handler for browser.
(Also see YoLinux Mozilla configuration tutorial)
- javadoc: Generate API documentation from tagged comments.
- javah: Creates C header and stub files for Java class.
- javap: Java file disassembler
- jdb: Java debugger
- jar: JAR archive file generation tool.
- JDK Tools and Utilities: Full list of tools and information.
| Installing Eclipse on Linux: |
Edit and debug Java IDE tool with plug-ins
To install, just un-tar the package to the area desired: tar -xzf eclipse-j2ee-europa-linux-gtk-x86_64.tar.gz
Typical installation is to /opt/
NEtBeans IDE download - IDE for Java, Ruby, C++, PHP, GlassFish, Tomcat
NetBeans 5.0+ includes the Java Swing GUI builder Swing GUI builder (formerly Matisse)
(Netbeans Gui building tutorial)
| Installing Borland JBuilder 9 Enterprise on Linux: |
UML design, edit, test Java IDE tool
- Load JBuilder9 Enterprise CD 1
Note the /etc/fstab cdrom statement used below. This may have
been altered when using CrossOver PC software installer as it may add "user,unhide," to the list of options and prohibit a JBuilder installation.:
-
/dev/cdrom /mnt/cdrom iso9660 noauto,owner,kudzu,ro 0 0
[Potential Pitfall]:
If the install script does not execute, it could be because of the way the CD was mounted.
- CD should automount. If not mount.
- cd /mnt/cdrom
- Execute the install script on the CD: ./install_linux
- Select "Borland JBuilder 9 Enterprise" and select all components
- Agree to license
- Select "Full Install"
- Set install path to /opt/JBuilder9
(no spaces allowed)
- Select "Install" button.
- Select "Done" button.
- Terminate installer program. Select "X" in window corner.
- If using a FlexLM License, place license file in the following directory:
/opt/JBuilder9/defaults/license.dat
FlexLM License server info
- Four desktop icons created:
- JBuilder: Start JBuilder 9
- Licensing Information: Obtain a trial license or register your single user license.
- JDataStore Explorer
- JDataStoreServer
Note: To un-install run:
/opt/JBuilder9/UninstallEnterprise/UninstallEnterprise
Desktop icon launcher:
- Name: JBuilder9
- Command: /opt/JBuilder9/bin/jbuilder
- Icon: /opt/JBuilder9/bin/jbuilder_icon.xpm
Complete IDE for building applications,
JSP/Servlets, JavaBeans[tm], Enterprise JavaBeans and distributed J2EE
applications. Comes with AppServer and Visi-Broker (Visigenics CORBA
broker). Supports UML, SOAP, UDDI, WSDL. (Linux, Solaris, Mac OS X and
MS/Windows) Oracle also sells a version of JBuilder under the Oracle
brand name.
Borland OptimizeitSuite Installation:
Optimizeit Suite, Profiler, Thread Debugger and Code Coverage
- Load JBuilder9 Enterprise CD 2
- CD should automount. If not mount.
- cd /opt
- tar -xvzf /mnt/cdrom/linux/suite.tgz
This creates /opt/OptimizeitSuite55/...
- Add FlexLM License: /opt/OptimizeitSuite55/lib/license.dat
Tools:
- /opt/OptimizeitSuite55/CCoverage
- /opt/OptimizeitSuite55/OptimizeIt
- /opt/OptimizeitSuite55/ProgressTracker
- /opt/OptimizeitSuite55/ThreadD
IntelliJ-Idea
IDE: Commercial and Open Source. Various components are available as GPL'd software.
Other Java IDEs:
Also see the YoLinux.com list of Linux text editors.
| Java Servlet, Application Servers and JSP Servers: |
Simply put, Java servlets are like CGI in Java for the dynamic generation of web content.
JSP is embedding Java in a web page which is processed by the servlet engine before being served.
- Apache Tomcat - Java solutions for the Apache web server. Servlet processing module which integrates with the Apache web server.
- Adobe/Macromedia: J-Run - Java Application Server (JSP, Servlets, EJB, Transaction and Messaging)
- Caucho Tech: Resin - Java servlet and JSP engine with load balancing. (commercial)
- JETTY - web server written in Java which provides servlet processing.
- cometd - httpd server written in Java. Support for servlets and event routing. Web framework for push to browser technology.
| Java App Server, SOA, Middleware and Three Tier Systems (J2EE/EJB or CORBA services): |
- JBoss - Open Source Enterprise JavaJ2EE application server. Bundles Tomcat app engine, HornetQ message queue, Hibernate (Db interface), Business Rules Management System (BRMS), SOAP SOA services, HSQL database, SEAM (AJAX, JSF, JPA, EJB, BPM, ...
- JBOSS.com: Red Hat owns JBOSS and this is their home page.
- jBPM: (Java Business Process Management) workflow/orchestration using BPEL (Business Process Execution Language)
- JEMS: (JBoss Enterprise Middleware System) for SOA (Service Oriented Architecture)
- Drools - business rules engine
- Apache.org: Geronimo - fully certified J2EE 1.4 application server.
- BEA Systems
- WebLogic - Enterprise Java Beans (EJB) and Java 2 Enterprise Edition (J2EE)
- Sun J2EE application server - For building enterprise-class server-side applications with Java. (EJB,JSF,SOA,JSP,JMS,CORBA,JDBC,XML,JNDI and servlets.
- Oracle Application Server - Supports SOAP, J2EE, etc.
- Java.net: GlassFish - open source Java EE 5 application server.
- Enhydra.org - Java Application J2EE/XML Server. Development sponsored by Lutris Technologies
- Borland: Appserver - EJB/J2EE, CORBA
- Borland: Visibroker - CORBA Object Request Broker (ORB) (Java and C++ interfaces)
- IBM WebSphere
- iPlanet Application Server - J2EE e-commerce platform.
- Orion - J2EE: EJB, Servlets, JSP, JTA, JNDI, JDBC, JMS, XML/XSLT. (Used by Oracle in their J2EE server)
- Iona: iPortal - Iona: XMLBus web services Integration Platform and IDE (Red Hat 7.0+)
- JOnAS - Open Source EJB
- OpenAdaptor.org -
All Java and XML based. EAI (Enterprise Application Integration)
software. Extensible with built in components for JMS, Oracle, Sybase
and TIBCO as well as data exchange formats such as XML. This is used by
major powerhouses such as the investment banking arm of Dresdner Bank
(its original developer and sponsor)
- Aligo: M-1 server -
Mobile Application Server. Built for J2EE end-to-end Java mobile
application development. Supports Palm, WAP Phones, RIM pagers, Windows
CE mobile devices. Supports WAP/WML, PQA HDML, Clipped HTML and Compact
HTML. integrates with LDAP, PKI, EJB, XML, JDBC, JMS, CORBA. Requires
Apache/Tomcat.
- Blazix - J2EE, SSL, EJB, JRMP, Servlets, JSP. (Commercial licensing available)
- Sybase: EAServer
| Java Data Storage: (Databases) |
|
DB and ORM API:
Terms:
|
|
| Java API for Data Formats and Data Exchange: |
Data Exchange Formats:
- XML:
- Apache: XML Beans: Program to generate Java source code classes to parse and encapsulate XML based on an XSD schema file and populate a data class. Also generates code to generate XML from a Java data object. Released by BEA to opensource community. (YoLinux.com XmlBeans tutorial)
- JAXB: Generates Java source code to parse and encapsulate XML. Similar to XmlBeans except that it maps XML to a specific JAXB object which reflects the schema of the XML. XmlBeans allows you to parse and then store or use the data however you would like.
IBM Developerworks JAXB Tutorials: Part 1, Part 2
Sun's GlassFish reference JAXB implementation
- Java: JAXP: XML parser. Included in Java SE 1.6
- Piccolo: High speed XML parser implementing SAX and JAXP interfaces.
- Apache: Xerces2: XML parser
- Binary:
- Fast Infoset: terse, tight and light binary alternative format developed by Sun for data exchange when XML is too heavy. A more compact and efficient serialization than text-based XML format.
- Non XML Formats:
- JSON: JavaScript Object Notation
- YAML: serialized, human readable text data
- EDI: Old/historical data exchange format
The compiled code is not cross platform but use of cross platform GUI frameworks should make the source portable if coded well.
- SL.com - Sherrill - Lubinski SL-GMS -
[Applet demo]
Dynamic graphic GUI components and controls for real time interfaces
and displays. Common ".m1" file graphic framework for C++ and Java.
Graphic sources include Visio, bitmaps and DXF. Supports pan, zoom,
drill-down and hyperlink capability. Supports input as well as
displays. Low weight applets for good performance
- Quest: JClass
Delivered as separate class components to be integrated within ones program.
Many are Bean components which can be dragged and dropped within a GUI IDE.
Many configurable widgets.
- Genlogic.com: GLG -
Dynamic, data driven visual components. Must use GLG monolithic super
class framework within your application. Widgets are used within their
class framework. Includes many widgets. Strong support of widgets for
process control displays.
- ILog.com: JViews
- Diagramming and data graphing capabilities. Requires use of their
super class framework. Few predefined widgets. (just graphs and layout)
Developer must develop most widgets.
- Infragistics.com: JSuite
- Access control (ACL), db connection pools, GUI components (calendars,
explorer trees, editing components), charting (scatter, bar) Not all
components were beans and thus would not integrate with IDE.
- INT.com: Java components - 2D and 3D data visualization.
Custom Java GUI Components
- SWING - Sun GUI API (written using AWT)
- AWT - Java's primitive graphics layer.
- JavaFX - Sun Java GUI description language/presentation layer.
Java GUI's and interaction defined by an XML file. This allows for an infinitely flexible interface.
- CookSwing - extensive framework supporting AWT, Swing and Bean listeners.
- JGB - Extensible infrastructure and design. Shows promise for easily reconfigurable GUI layouts.
- SwiXml - uses javax.swing. Tight code base.
- WidgetServer - unified GUI toolkit to support web AJAX as well as Swing interfaces.
- OpenLaszlo - web based UI development for J2EE or servlet containers. UI is AJAX HTML/Javascript or Flash for user interaction.
- Xoetrope: XUI - web or stand-alone applications
- Beryl XML GUI - Java Swing apps, J2EE client apps
- SwingML - web J2EE/servlet and AJAX
| Java Connection Architectures and Web Services: |
Topologies:
- client - server: e.g.:
- WWW: Web browser (client) to web server (server) connection. A
click on a web page invokes processing by the server which feeds a
response to the web browser.
Software: Apache web server and CGI
- Servlets: A JVM used to process Java to perform CGI functionality.
Software:
- Web Services:
- SOAP: client calls a remote process. The requested process
and input arguments are encapsulated in XML and passed to the server.
The server executes the requested function and passes the results back
to the client encapsulated in XML.
- SOA: Service Oriented Architecture - key components of a SOA include services, dynamic discovery, and messages.
May integrate the following to locate and invoke the web service:
- UDDI: Universal Description, Discovery, and Integration
- Find a web service, registry
Software:
- WSDL: Web Services Description Language. - Locate the SOAP service and server
- SOAP - The Web services server.
Software:
- Apache Axis2: SOAP and WSDL support. The Axis SOAP/WSDL engine servlet runs under Tomcat which is coupled with the Apache web server.
- Apache CXF: (was XFire) Web services programming framework: SOAP, WSDL, JAX, ...
- Also see lists above i.e. JBoss, BEA Weblogic, IBM Websphere, Sun, Oracle Application server, ...
- CORBA: Compact binary transport over IIOP. May use a CORBA name server to locate services. Native Java support.
- Java RMI: Remote Method Invocation. Native Java support.
- peer to peer: Two systems or processes passing information between the two.
- JMS: Java Messaging Service. Supports publish-subscribe
communications framework. Subscription via callback methods provided by
the subscriber. ActiveMQ is often used as a communications bus for ESB.
JMS and other message queues:
- Three tier architectures: J2EE (middleware)
J2EE Software:
- ESB: Enterprise Service Bus - a collection of specialized
processes (may be distributed) integrated by a common infrastructure
which handles communication, interactions, interfaces, authentication, discovery
and any other needs of the service bus.
- BPEL: Business Process Execution Language - Workflow defined
in an XML schema, used to invoke web services in the proper order and
deliver the results.
BPEL Software: Apache ODE.
(Note project Agila is retired.)
ESB Software:
Most Cloud computing efforts are available as services purchased through vendors such as
Amazon Web Services (EC2: Elastic Computing Cloud) or
Google AppEngine.
Linux has support for Java binaries in the OS. You can execute
Java applications and Java Applets just like any other program once the
Java Runtime Environment
is loaded and the kernel configured.
See:
The Java Real-Time System (RTS) runs on the Linux Real-Time kernel.
The "Red Hat Enterprise MRG" (Messaging Real-time Grid) is a set of over 50 RPMs which add or replace components of the "Enterprise Linux" release.
It includes a real-time kernel, configuration and tuning utilities, performance monitoring tools and documentation.
The Red Hat MRG Linux includes software based on the University of Wisconsin's Condor project for high throughput computing.
The Red Hat MRG release includes QPID, the Apache group's implementation of the AMQP message queues which greatly improves messaging throughput vs traditional SOA technology.
- Sun Java RTS - Real-Time System -
Features the ability to schedule real-time threads, AOT (Ahead of Time Compile as opposed to JIT) to load classes before they are required so this action does not introduce an unexpected latency, and it includes the ability to perform deterministic garbage collection.
RTS runs on:
- AMQP.org
Implementations:
- Apache: QPID - Note: examples are installed to /usr/share/qpidc/examples/pub-sub/ and /usr/share/doc/rhm-0.2/cpp/pub-sub/
While Red Hat's PR states magnificent gains in speed (qpid 1.0), tests show that Apache ActiveMQ to be both faster and more reliable.
- IONA opensource implementation
- Java RTS tutorials:
| Dot NET Interoperability and Integration: |
Dot NET calls to Java:
- IKVM: JVM in dot NET including dot NET versions of Java libraries. No support for Java GUI.
Java calls to dot NET:
Solution is to share COM object. Make COM object available with regasm.exe then call COM component from Java using JNI.
News Groups:
Glossary:
- J2SE: Java 2 Standard Edition: Foundation for desktop, server, J2EE, web services, embedded and real-time applications
- J2ME: Java 2 Micro Edition
- J2EE: Java 2 Enterprise Edition: Server side and
middleware. built upon J2SE. Web services, SOA, component model,
management and communications API.
- JAXP: Java API for XML processing.
- JAXM: Java API for message processing.
- JAXR: Java API for XML based registry integration. Registration and discovery of web services.
- JAX-RPC: Java API for a remote procedure call interface.
- JAXB: Enables bindings between the XML schema and the Java object.
- JINI: Framework for advertising services on the local network. Discovery mechanism for systems to obtain and lease these services. See Apache river.
- JMX: Monitor distributed devices, applications and service driven networks.
- JVM: Java Virtual Machine - compiles Java byte code to machine code, then executes.
- SOAP: Simple Object Access Protocol.
- UDDI: Universal Description, Discovery and Integration. SOAP services discovery.
- WSDL: Web Services Description Language. Name service to locate SOAP service and its interface definition.
- XSLT: eXtensible Stylesheet Language Transformation. i.e. translates XML into renderable XHTML for viewing in a browser or translate XML to a format required for another application.
[Potential Pitfall]: If your Sun or IBM JVM doesn't work with RH 7.1?
- [Solution]
Books: |
-
 |
"Core Java 2, Volume 1: Fundamentals "
by Cay S. Horstmann, Gary Cornell
ISBN # 0132354764, Prentice Hall PTR 8th edition
The industry standard. Need I say more?
|
|
 |
"Core Java 2: Volume 2 Advanced Features "
by Cay S. Horstmann, Gary Cornell
ISBN # 0132354799, Prentice Hall PTR 8th edition
The industry standard. Need I say more?
|
|
 |
"Core Java Server Faces"
by David Geary, Cay S. Horstmann
ISBN # 0131738860, Prentice Hall PTR 2nd edition
|
|
 |
"JSP, Servlets, and MySQL"
by David Harms
ISBN # 0764547879, Hungry Minds, Inc
|
|
|
|