FlexiList is a Java data structure that combines the benefits of array
...->Dynamic Size: FlexiList can grow or shrink dynamically as elements are added or removed, whereas arrays have a fixed size.
->Good Memory Locality: FlexiList nodes are stored in a contiguous block of memory, making it more cache-friendly than arrays.
->Faster Insertion and Deletion: FlexiList can insert or delete nodes at any position in the list in O(1) time, whereas ArrayList requires shifting all elements after the insertion or deletion point.
library for converting from JPA, Hibernate, etc to json. Reads JPA Annotations to get around the proxy class problem. Still in the very early stages but has very useful limited functionality.
XOB (XMLObjectBinder) is Java package that is an alternative to JAXB. It lets you define interfaces representing XML tags and have them automatically implemented runtime through the use of reflection giving you an object representation of your XML files.
Full-stack observability with actually useful AI | Grafana Cloud
Our generous forever free tier includes the full platform, including the AI Assistant, for 3 users with 10k metrics, 50GB logs, and 50GB traces.
Built on open standards like Prometheus and OpenTelemetry, Grafana Cloud includes Kubernetes Monitoring, Application Observability, Incident Response, plus the AI-powered Grafana Assistant. Get started with our generous free tier today.
PippoProxy is a 100% pure Java HTTP proxy designed/implemented for Apache Tomcat. Thanks to its cache manager (that can be disabled in case of DYNAMIC proxied web sites) it's really very performant in case of STATIC proxied web sites.