Skip to content

psi-probe/psi-probe

Repository files navigation

PSI Probe

Java CI Coverity Coveralls Known Vulnerabilities Maven Central Sonatype Nexus (Snapshots) Renovate enabled Releases GPLv2 License Project Stats Github All Releases

psi-probe

Sites

Contributing

See CONTRIBUTING.md for info on working on PSI Probe and sending patches.

Latest Release via Github Releases

Please download latest probe.war from here

Latest Release via Maven Central

Please download latest psi-probe-web.war release from here

You can rename 'psi-probe-web.war' to the traditional 'probe.war' or other name as you see fit.

Latest Snapshot via Maven Central

Please download latest psi-probe-web.war snapshots from here

You can rename 'psi-probe-web.war' to the traditional 'probe.war' or other name as you see fit.

Building from Source

  1. Clone PSI Probe's git repository.

    Note: If you plan to contribute to PSI Probe, you should create your own fork on GitHub first and clone that. Otherwise, follow these steps to build the latest version of PSI Probe for yourself.

    Execute the following command:

    git clone https://github.com/psi-probe/psi-probe
    

    This will create directory called psi-probe. Subsequent steps will refer to this as "your PSI Probe base directory."

  2. Minimum JDK version required to build is JDK 11 and run is JDK 8.

  3. **Download and install Maven 3.9.6 or better

    You may download it from the Apache Maven website.

  4. Run Maven.

    Execute the following command from your PSI Probe base directory:

    mvn package
    

    This will create a deployable file at web/target/probe.war.

Supported Tomcat Versions

Generally supported versions for third party tomcat providers align with their support but earlier versions may still work. It is advisable in every case to use only supported tomcat releases per specific vendor. Our support will only be against non CVE releases.

  • Tomcat 8.5 Series (Notice: We will drop support for tomcat 8.5 after tomcat officially archives it shortly after 3/31/2024 and we will complete a final release before that is done)

    • Tomcat 8.5.86 to 8.5.97 (Stated end of life will be 3/31/2024, considering using tomcat 9 or better)
    • TomEE 7.1 Discontinued, suggest to use TomEE 8.0 or better. TomEE no longer supports tomcat 8.5
    • NonStop(tm) Servlets For JavaServer Pages(tm) v8.5 (Based on Tomcat 8.5.78)
    • Pivotal tc 4.1.29 release with addon only (Based on Tomcat 8.5.97)
  • Tomcat 9.0 Series

    • Tomcat 9.0.72 to 9.0.85
    • TomEE 8.0.16 (Based on Tomcat 9.0.82). TomEE is ending support on December 31st 2023
    • NonStop(tm) never supported 9.0 as they changed direction but seem to have come back now for 10.1
    • Pivotal tc 4.1.29 release (Based on Tomcat 9.0.84)
    • Vmware tc 5.0.8 release (Based on Tomcat 9.0.84)
  • Tomcat 10.0 Series (discontinued by tomcat / not released by psi probe yet)

    • TomEE 9.1.2 (Based on Tomcat 10.0.27)
  • Tomcat 10.1 Series (not released by psi probe yet - issues with hop from tomcat 10.0.27 to 10.1.x)

    • Tomcat 10.1.6 to 10.1.18
    • TomEE - no support yet for 10.1
    • NonStop(tm) Servlets For JavaServer Pages(tm) v10.1 (Based on Tomcat 10.1.7)
    • Vmware tc 5.0.8 release (Based on Tomcat 10.1.17)
  • Tomcat 11.0 Series (pending)

    • Tomcat 11.0.0.M3 to 11.0.0.M16

Precondition

PSI Probe uses deep reflection to access data. Take care your tomcat configuration considers this. You can do this by extending the JDK_JAVA_OPTIONS variable:

    ...
    --add-opens=java.base/java.lang=ALL-UNNAMED \
    --add-opens=java.base/java.io=ALL-UNNAMED \
    --add-opens=java.base/java.util=ALL-UNNAMED \
    --add-opens=java.base/java.util.concurrent=ALL-UNNAMED \
    --add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED \
    ...

User Groups

FAQ