zheh12/jvm-breakglass

Setting up an nrepl can be useful to introspect into the JVM for troubleshouting/investigation or testing of regular Java applications. You can connect onto a process and use a Clojure prompt interactivelly or have client application that sends and execute Java code dynamically. It works because the code injected is Clojure and that the Clojure run-time allows to evaluate code at run-time. Furthermore Clojure interops very easily with Java i.e. you can translate pretty much any Java code into Clojure and access all your Java object from the injected Clojure code. This is the perfect tool to access the inside of your JVM process live after it has been deployed. To run any fancy change of code scenario, any data structure or call any method you don't need to redeploy your java code. You can see what your process sees in real time. This is an unvaluable tool to use to develop and maintain a java application.

Leiningen/Boot

[zheh12/jvm-breakglass "0.0.9-SNAPSHOT"]

Clojure CLI/deps.edn

zheh12/jvm-breakglass {:mvn/version "0.0.9-SNAPSHOT"}

Gradle

implementation("zheh12:jvm-breakglass:0.0.9-SNAPSHOT")

Maven

<dependency>
  <groupId>zheh12</groupId>
  <artifactId>jvm-breakglass</artifactId>
  <version>0.0.9-SNAPSHOT</version>
</dependency>