Spring Migration Analyzer - User Guide

Andy Wilkinson

1.0.0.M1

Copies of this document may be made for your own use and for distribution to others, provided that you do not charge any fee for such copies and further provided that each copy contains this Copyright Notice, whether distributed in print or electronically.


Table of Contents

1. Introduction
1.1. What is Spring Migration Analyzer?
1.2. Installation
2. Using Spring Migration Analyzer
2.1. Analyzing an application
2.1.1. Customizing the analysis
2.1.2. Analyzing multiple archives
2.2. Viewing an HTML report
2.2.1. The report's summary
2.2.2. The report's details
3. What is detected
3.1. Introduction
3.2. API usage
3.3. Deployment descriptors
3.4. EJBs
3.5. Spring
3.6. Transactions
4. Resources
4.1. Downloads
4.2. Source code
4.3. Issue tracking

1. Introduction

1.1 What is Spring Migration Analyzer?

Spring Migration Analyzer is a command-line tool that can be used to analyze Java EE applications and produce a report that describes the application and how it can be migrated to Spring.

1.2 Installation

Before installaing Spring Migration Analyzer, please ensure your system meets the following requirements:

  • A Windows, OS X or Linux operating system
  • A Java 5 or later installation, with the JAVA_HOME environment variable configured to point to it

The Spring Migration Analyzer installation is available as a zip file from the download site. Once you have downloaded the zip, Spring Migration Analyzer can be installed by unzipping it into a directory of your choice. Once unzipped, you may wish to add Spring Migration Analyzer's bin directory to your PATH.

Next, verify that Spring Migration Analyzer has been installed correctly. To do so on Windows, run the following command:

 > migration-analysis.bat

To do so on OS X and Linux, run the following command:

 > migration-analysis.sh

In both cases, you should be presented with a description of Spring Migration Analyzer and its usage information:

 Usage: migration-analysis.sh <inputPath> [OPTION]...
 
 Description:

   Produces a migration analysis report for each archive found at the specified
   input path. The input path may be either a single archive or a directory. In
   the case of a directory, the entire directory structure is examined and all
   archives that are found are analyzed. The reports are written to the output
   path with each report being written into a sub-directory with the same name as
   its input archive. For example, if my-app.ear is analyzed its report will be
   written to <outputPath>/my-app.ear.

 Options:

   -e,--exclude <excludedPaths>  Paths within the input to be excluded from the
                                 analysis. Supports Ant-style patterns and can be
                                 specified multiple times.
   -o <outputPath>               The path of the output directory. Defaults to
                                 the current working directory
   -t <outputType>               The type of the output to be created. Defaults
                                 to html.

2. Using Spring Migration Analyzer

2.1 Analyzing an application

To analyze an application you run the migration-analysis script, passing it the path of the application archive that you want to be analyzed. For example:

 > migration-analysis.sh /path/to/my-app.ear

This will perform an analysis of my-app.ear, producing a migration report in the current working directory. The report will be in HTML. The report is written into a directory with the same name as the archive that we analyzed. For example if you analyzed my-app.ear, the report will be written into a directory named my-app.ear.

2.1.1 Customizing the analysis

A number of different options may be passed to migration-analysis, allowing you to customize its behaviour:

Table 2.1. Command line options

OptionDescription
-e, --excludeA path within the input that should be excluded from the analysis. Supports Ant-style path patterns. This option can be specified mutiple times.
-o The path of the output directory to which the analysis reports will be written. If not specified, the reports are written to the current working directory.
-t Allows you to specify the the type of report to create. Defaults to html which is currently the only supported report type.


2.1.2 Analyzing multiple archives

Spring Migration Analyzer can analyze multiple archives at the same time. To analyze multiple archives you provide an input path that points to a directory containing all of the archives that you want to be analyzed.

When Spring Migration Analyzer analyzes multiple archives it produces a separate report for each archive that it analyzes. Each report is written into a directory with the same name as its corresponding archive. For example, with three applications in a directory named apps:

apps/
    one.ear
    two.ear
    three.ear

Running Spring Migration Analyzer with the following options:

 > migration-analysis apps -o reports

Will produce the following set of reports, each in its own directory:

reports/
    one.ear/
        index.html
        ...
    two.ear/
        index.html
        ...
    three.ear/
        index.html
        ...

2.2 Viewing an HTML report

An HTML migration analysis report can be viewed by opening its index.html file in any modern web browser.

As shown in the image above, the report is divided into three main sections. Sections one and two are used for navigation and the third section is used to show the report's content. Section one lists the different categories that the report's information falls into. Clicking on a category will show details of that category's analysis. Section two lists all of the files in the application that the report contains information for. Clicking on a file will show all of the analysis for that file.

2.2.1 The report's summary

When the report is first viewed, or by clicking on Summary in the top-left navigation section, a summary of the report is shown. Reading the summary should help you to get a feel for the effort involved in migrating the application. It provides a high-level description of the application and provides some guidance on how it can be migrated to Spring. Where applicable, the guidance provides links to the relevant sections of the Spring reference documentation to help you get started.

2.2.2 The report's details

If you're interested in more details about the information in the report, you can use the links in the summary text or on the left-hand side. For example, you may want to look at a particular class to see how extensive its use of a Java EE API is, or you may want to find out more about the application's use of programmatic transaction management.

For detailed information about everything that Spring Migration Analyzer can detect, please refer to the chapter entitled "What is detected".

3. What is detected

3.1 Introduction

The analysis performed by Spring Migration Analyzer can detect many different things about an application. Depending on the nature and complexity of an application, some or even all of the following may appear in a migration report.

3.2 API usage

Detects the usage of a variety of different APIs within the application's code.

The following APIs are detected:

  • EJB
    • javax.ejb.*
  • JBoss
    • org.jboss.*
  • JCA
    • javax.resource.*
  • JMS
    • javax.jms.*
  • JNDI
    • javax.naming.*
  • JPA
    • javax.persistence.*
  • JTA
    • javax.transaction.*
  • Spring's EJB integration
    • org.springframework.ejb.*
  • Spring's JNDI integration
    • org.springframework.jndi.*
  • WebLogic
    • weblogic.*
  • WebSphere
    • com.ibm.websphere.*
    • com.ibm.wsspi.*

3.3 Deployment descriptors

Detects the presence of deployment descriptors within the application.

The following Java EE and vendor-specific deployment descriptors are detected:

  • Java EE:
    • application.xml
    • application-client.xml
    • ejb-jar.xml
    • persistence.xml
    • ra.xml
    • web.xml
    • webservices.xml
  • JBoss:
    • jaws.xml
    • jboss.xml
    • jbosscmp-jdbc.xml
    • jboss-service.xml
    • jboss-web.xml
  • WebLogic:
    • weblogic.xml
    • weblogic-cmp-rdbms-jar.xml
    • weblogic-ejb-jar.xml
    • weblogic-ra.xml
    • persistence-configuration.xml
    • weblogic-webservices.xml
    • weblogic-wsee-clientHandlerChain.xml
    • webservice-policy-ref.xml
    • weblogic-wsee-standaloneclient.xml
    • weblogic-application.xml
  • WebSphere:
    • client-resource.xmi
    • ibm-application-bnd.xmi
    • ibm-application-bnd.xml
    • ibm-application-client-bnd.xmi
    • ibm-application-client-bnd.xml
    • ibm-application-client-ext.xmi
    • ibm-application-client-ext.xml
    • ibm-application-ext.xmi
    • ibm-application-ext.xml
    • ibm-ejb-access-bean.xml
    • ibm-ejb-jar-bnd.xmi
    • ibm-ejb-jar-bnd.xml
    • ibm-ejb-jar-ext.xmi
    • ibm-ejb-jar-ext.xml
    • ibm-ejb-jar-ext-pme.xmi
    • ibm-ejb-jar-ext-pme.xml
    • ibm-webservices-bnd.xmi
    • ibm-webservices-ext.xmi
    • ibm-web-bnd.xmi
    • ibm-web-bnd.xml
    • ibm-web-ext.xmi
    • ibm-web-ext.xml
    • ibm-web-ext-pme.xmi
    • ibm-web-ext-pme.xml
    • j2c_plugin.xml

3.4 EJBs

Detects the presence of EJBs in an application. Both EJBs declared in deployment descriptors and EJBs identified by Java annotations are detected.

The following EJB-related information is detected:

  • Entity beans
    • Persistence type: container-managed persistence (CMP) or bean-managed persistence (BMP)
    • Primary key class
    • CMP version
    • Reentrancy
    • CMP fields
  • Session beans
    • Session type: stateful or stateless
    • Transaction type: container-managed transactions (CMT) or bean-managed transactions (BMT)
    • Transaction propagation configuration (required, requires new, not supported, supports, never, or mandatory)
  • Message-driven beans (MDBs)
    • Transaction type: container-managed transactions (CMT) or bean-managed transactions (BMT)
    • Transaction propagation configuration (required or not supported)

3.5 Spring

Detects any existing usage of Spring in an application, focusing on usage that relates to Java EE.

The following usage of Spring is detected:

  • Spring configuration files
  • Use of Spring's EJB integration namespace
  • Use of Spring's JNDI namespace
  • Use of Spring's JTA integration

3.6 Transactions

Detects an application's usage of transactions.

The following transaction usage is detected:

  • Direct use of DataSource transactions
  • Programmatic transaction management, i.e. code that uses UserTransaction

4. Resources

4.1 Downloads

http://www.springsource.org/download/community?project=Spring%20Migration%20Analyzer

The latest release of Spring Migration Analyzer, and all previous releases, are available for download.

4.2 Source code

http://github.com/SpringSource/spring-migration-analyzer

Spring Migration Analyzer's source code is available on GitHub

4.3 Issue tracking

http://jira.springsource.org/browse/SMA

If you've found a bug in Spring Migration Analyzer, or you have a suggestion for a new feature or enhancement, please let us know. If you're reporting a bug, please include detailed steps of how to reproduce the problem. If you're suggesting a new feature or enhancement, please include a detailed description of what you'd like to be added.