> For the complete documentation index, see [llms.txt](https://www.andhowconfig.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.andhowconfig.org/user-guide/java9-and-above.md).

# Java9 and Above

### The good news:  AndHow works on JDK 8 - 16

If you don't use modules (i.e. don't include a `module-info.java` file in your jars), AndHow works just fine.  And this seems to be what most projects and libraries have done:  simply ignore the module system.

### The bad news:  It doesn't work with Java9 modules

If you really need Java 9 modules, it will be some time and work before AndHow can support them.  If module support is important to you, please comment on [this ticket](https://github.com/eeverman/andhow/issues/375).  If you are a module expert, please consider offering to help with that ticket.

### But... Why modules?

Applications, especially those that runs as lambdas, micro-services or within containers, live in a very walled garden. The extra level of ceremony that Jigsaw modules provides (essentially protecting your code from itself and the dependencies you choose to use) doesn't add meaningful security in most cases.
