Summary: Information and Release Notes about the JEE File Discoverer. This extension is a file system discoverer.
Extension ID
com.castsoftware.dmtjeefilediscoverer
What's new?
See JEE File Discoverer 2.2 - Release Notes for more information.
Extension description
This discoverer detects "projects" (and therefore Analysis Units) based on the presence of .java files.
In what situation should you install this extension?
This extension should be used when the Java/JSP project files such as .project or pom.xml are not delivered with the source code (without these files, the discoverers provided "out of the box" in AIP cannot detect all .java files). In summary the extension provides a "catch-all" to ensure that all .java/.jsp files will be packaged for analysis.
Note that this discoverer also supports .wsdl/.wsdd files which belong to a path of an already discovered project (i.e. these files will be analyzed). However, if these files are located outside the path of a discovered project path, then they will not cause the creation of a project/Analysis Unit and will therefore be skipped during the analysis.
Technical information
This extension is designed to detect .java/.jsp files in the following scenarios:
Case 1
The package identified in the first .java file matches the folder hierarchy. In this situation one project is created by the discoverer as follows:
- the project name will be the name of the parent folder of the folder containing the main package (i.e. com)
- the root path of the project will be the same as the project name
- the folder containing the main package (i.e. com) will be selected as the source code
For example, for a .java file with the following folder hierarchy C:\temp\project1\src\com\cast\test.java, the project will be named "project1", the root path will be "project1" and the selected folder is "project1/src".
Case 2
Similar to Case 1 above, when a sub-folder "src" and a sub-folder "test" are located inside the same folder "project1", the project created by the discoverer ("project1") will reference the two folders for the source code: "project1/src" and "project1/test".
Case 3
In this situation the .java files do not have a package and one project will be created by the discoverer for each .java file that is discovered (and not each folder). The project name uses the same name as the discovered .java file.
Case 4
In this situation, the package doesn't match the folder hierarchy (for example, a.b.c.class1 but the folders a and b are missing). A warning is displayed and the folder c is considered as the main package. The parent folder of c is selected for the source code and the grand-parent is used for the project name and root.
Case 5
Similar to Case 4 above, however, the .java file is not located in the correct folder. In this situation (known as an "UnmatchingPackage") the behavior of the discovery is the same as Case 4, however, the log file generated by the CAST Delivery Manager Tool will contain the following to indicate the nature of the discovery:
Case 6
In this situation, each Java branch is assigned to a separate project, for example:
- c:\temp\Project1\src\com\cast\file1.java
- c:\temp\Project1\x\y\z\src\com\component\file2.java
In the above situation (known as a ParentProject), two projects will be created.
About dependencies
No dependencies to other Analysis Units/Technologies will be automatically created based on the use of this extension since the "discovery" is based on the presence of .java files, rather than Maven or Eclipse projects. As such, you may need to manually create dependencies between Analysis Units to achieve any inter-Analysis Unit links you require.
AIP Core | Supported | Notes |
---|---|---|
8.3.x | ||
8.2.x |
|
Activation using Console
Behaviour in Console ≥ 2.3
Console will automatically install the JEE File Discoverer whenever a .java file is encountered in your delivered source code. This extension will ensure that the required Analysis Units are created for your source code and that an analysis can proceed without issue.
Behaviour in Console ≤ 2.2
By default, this extension is not activated when using Console. If you want to activate it, please see Configuring source code delivery for JEE without .pom file or .project file - activating the extension will cause it to be automatically downloaded and installed when a .java file is encountered during the source code delivery.
Activation using legacy CAST Management Studio
Log messages
When packaging your source code and you have activated the JEE File Discoverer, the following messages will be present in the log file to help you understand the nature of the discovery:
Unnamed Package
- Message type: INFO
- Location: Scan and Discover phases
- Meaning: The package declaration is missing; therefore, the corresponding .java file should be considered as a "batch" written in Java.
Java file %FILE_PATH% has no package, and will lead to a specific JEE file project
Invalid Package
- Message type: WARNING
- Location: Scan phase
- Meaning: The package declaration is incorrect; therefore, the corresponding .java file is skipped from any Java project.
Java file %FILE_PATH% has an invalid package, and will be skipped
This warning corresponds to an invalid declaration in the .java file, for example:
package; package a.b
These invalid declarations are typically found in "scrap" .java files, i.e. files which are bundled in the delivery but which are not taken into account during compilation.
Incomplete Package
- Message type: INFO
- Location: Scan and Discover phases
- Meaning: The package declaration does not match the directory structure; therefore, the discovered project might be incomplete.
Java file %FILE_PATH% has an incomplete package
Unmatching Package
- Message type: INFO
- Location: Scan phase
- Meaning: The package declaration does not at all match the directory structure; therefore, the discovered project might be incomplete.
Java file %FILE_PATH% has an unmatching package
Parent Project
- Message type: INFO
- Location: Discover phase
- Meaning: The folder associated to the project contains sub folders associated with valid (i.e., they are not Invalid Packages, Incomplete Packages or Unmatching Packages) projects; in this situation, some XML and properties resource references are added to the configuration, so that the application root path, which is too large, will not be used as a default by the analyzer to scan the XML and properties files.
Java project %PROJECT_NAME% under %PROJECT_PATH% contains additional Java projects