Reputation: 1379
I'm learning REPL for Java 9 and how to utilize it effectively. Considering Java is heavy on the configuration and external dependencies this has made experiments for anything outside the trivial more work to configure than just waiting for a build/run. For instance, to evaluate something more than a trivial line of Java, based on just its runtime, one has to reference an external library as well as its own dependencies. This over-complicates things and perhaps make the point of such a feature moot for real-world scenarios.
Until IDE's integrate REPL and automatically manage/inject dependent libraries, how does one use the feature without the feature becoming more of a burden then the hurdle it was meant to overcome? Please note I'm not looking for conjecture, but methods in which one has worked to accomplish this.
I'm using the Kulla repo here to experiment.
Upvotes: 3
Views: 264
Reputation: 63912
As of October 2015 REPL (project Kulla) is still is not integrated, and Modular JDK, runtime images goes as second alternative download. Once they are all integrated in Dec 2015, there should start work and testing of them together.
As of October 2015 all tutorials suggest starting from building sources:
Upvotes: 2