A peek into Java 17: Continuing the drive to encapsulate the Java runtime internals

This page summarizes the projects mentioned and recommended in the original post on /r/java

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • Netty

    Netty project - an event-driven asynchronous network application framework

  • private static List getSearchDomainsHack() throws Exception { // Only try if not using Java9 and later // See https://github.com/netty/netty/issues/9500 if (PlatformDependent.javaVersion() < 9) { // This code on Java 9+ yields a warning about illegal reflective access that will be denied in // a future release. There doesn't seem to be a better way to get search domains for Windows yet. Class configClass = Class.forName("sun.net.dns.ResolverConfiguration"); Method open = configClass.getMethod("open"); Method nameservers = configClass.getMethod("searchlist"); Object instance = open.invoke(null); return (List) nameservers.invoke(instance); } return Collections.emptyList(); }

  • stringtemplate4

    StringTemplate 4

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts