Rabea Gransberger — Refactoring your code to Java 9 modules

Java 9 allows you to split your code into modules and grant access only to certain packages and thus hide even public classes from external use. Splitting up your code into modules directly communicates the architectural design, simplifies maintenance and reuse and can slow down the increase of technical debt.
Back to Top