Skip to content

chesapeaketechnology/awesome-tech

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Awesome CTI Awesome

A curated list of awesome tools, libraries, software, and projects CTI has used, is using, or researched.

Contents

Solutions

Bean Mapping

Frameworks that ease bean mapping.

  • Dozer - Mapper that copies data from one object to another using annotations and API or XML configuration.
  • MapStruct - Code generator that simplifies mappings between different bean types, based on a convention-over-configuration approach.

Build

Tools that handle the build cycle and dependencies of an application.

  • Apache Maven - Declarative build and dependency management that favors convention over configuration. It might be preferable to Apache Ant, which uses a rather procedural approach and can be difficult to maintain.
  • Gradle - Incremental builds programmed via Groovy instead of declaring XML. Works well with Maven's dependency management.

Bytecode Manipulation

Libraries to manipulate bytecode programmatically.

  • ASM - All-purpose, low-level bytecode manipulation and analysis.
  • bytecode-viewer - Java 8 Jar & Android APK reverse engineering suite.
  • Javassist - Tries to simplify bytecode editing.

Caching

Libraries that provide caching facilities.

  • Ehcache - Distributed general-purpose cache.

CLI

Libraries for everything related to the CLI.

  • Oh My Zsh - Plugin-enabled framework for drastically more powerful zsh command line. Zsh is based on bash, but offers many improvements, oh-my-zsh is a popular, open-source project with active community support.
  • iTerm2 - iTerm2 is a replacement for Terminal and the successor to iTerm. It works on Macs with macOS 10.12 or newer. iTerm2 brings the terminal into the modern age with features you never knew you always wanted.
  • Homebrew - The missing package manager for macOS (or Linux).

Cluster Management

Frameworks that can dynamically manage applications inside of a cluster.

Code Analysis

Tools that provide metrics and quality measurements.

  • Checkstyle - Static analysis of coding conventions and standards.
  • Error Prone - Catches common programming mistakes as compile-time errors.
  • PMD - Source code analysis for finding bad coding practices.
  • SonarJava - Static analyzer for SonarQube & SonarLint.

Code Coverage

Frameworks and tools that enable code coverage metrics collection for test suites.

  • JaCoCo - Framework that enables collection of code coverage metrics, using both offline and runtime bytecode instrumentation.

Code Generators

Tools that generate patterns for repetitive code in order to reduce verbosity and error-proneness.

  • Auto - Generates factory, service, and value classes.
  • Lombok - Code generator that aims to reduce verbosity.

Configuration

Libraries that provide external configuration.

  • config - Configuration library for JVM languages.
  • owner - Reduces boilerplate of properties.
  • Typesafe Config - Powerful, yet simple, configuration library for JVM languages using HOCON (Human-Optimized Config Object Notation).

CSV

Frameworks and libraries that simplify reading/writing CSV data.

  • jackson-dataformat-csv - Jackson extension for reading and writing CSV.
  • uniVocity-parsers - One of the fastest and most feature-complete parsers. Also comes with parsers for TSV and fixed-width records.

Database

Everything that simplifies interactions with the database.

  • Chronicle Map - Efficient, in-memory (opt. persisted to disk),
  • H2 - Small SQL database notable for its in-memory functionality.
  • HikariCP - High-performance JDBC connection pool.
  • jOOQ - Generates typesafe code based on SQL schema.
  • Liquibase - Database-independent library for tracking, managing and applying database schema changes.
  • OrientDB - Embeddable distributed database written on top of Hazelcast.
  • Querydsl - Typesafe unified queries.

Data Structures

Efficient and specific data structures.

  • Apache Avro - Data interchange format with dynamic typing, untagged data, and absence of manually assigned IDs.
  • Apache Thrift - Data interchange format that originated at Facebook.
  • Protobuf - Google's data interchange format.
  • SBE - Simple Binary Encoding, one of the fastest message formats around.

Dependency Injection

Libraries that help to realize the Inversion of Control paradigm.

  • Apache DeltaSpike - CDI extension framework.
  • Dagger2 - Compile-time injection framework without reflection.
  • Guice - Lightweight and opinionated framework that completes Dagger.

Development

Augmentation of the development process at a fundamental level.

  • AspectJ - Seamless aspect-oriented programming extension.
  • DCEVM - JVM modification that allows unlimited redefinition of loaded classes at runtime.
  • HotswapAgent - Unlimited runtime class and resource redefinition.
  • JRebel c - Instantly reloads code and configuration changes without redeploys.
  • Manifold - Re-energizes Java with powerful features like type-safe metaprogramming, structural typing and extension methods.

Version Control

GUI and command line tools for version control.

  • Fork - A cross-platform, powerful, and intuitive git GUI client that is FREE.
  • Tortoise HG - A free and functional client for Mercurial (Hg).

Distributed Applications

Libraries and frameworks for writing distributed and fault-tolerant applications.

  • Apache Storm - Realtime computation system.
  • Apache ZooKeeper - Coordination service with distributed configuration, synchronization, and naming registry for large distributed systems.
  • Atomix - Fault-tolerant distributed coordination framework.
  • Hazelcast c - Highly scalable in-memory datagrid with a free open-source version.
  • Hystrix - Provides latency and fault tolerance.
  • JGroups - Toolkit for reliable messaging and cluster creation.
  • Quasar - Lightweight threads and actors for the JVM.

Distribution

Tools that handle the distribution of applications in native formats.

  • Bintray c - Version control for binaries that handle publishing. Compatible with Maven or Gradle, with a free plan for open-source software as well as several business plans.
  • Capsule - Simple and powerful packaging and deployment. A fat JAR on steroids, or a "Docker for Java" that supports JVM-optimized containers.
  • Central Repository - Largest binary component repository available as a free service to the open-source community. Default used by Apache Maven, and available in all other build tools.
  • JitPack - Easy-to-use package repository for GitHub. Builds Maven/Gradle projects on demand and publishes ready-to-use packages.
  • Nexus c - Binary management with proxy and caching capabilities.
  • packr - Packs JARs, assets and the JVM for native distribution on Windows, Linux and Mac OS X.

Document Processing

Libraries that assist with processing office document formats.

  • Apache POI - Supports OOXML (XLSX, DOCX, PPTX) as well as OLE2 (XLS, DOC or PPT).

Functional Programming

Libraries that facilitate functional programming.

  • jOOλ - Extension to Java 8 that aims to fix gaps in lambda by providing numerous missing types and a rich set of sequential Stream API additions.

Game Development

Frameworks that support the development of games.

  • FXGL - JavaFX Game Development Framework.
  • libGDX - All-round cross-platform, high-level framework.
  • LWJGL - Robust framework that abstracts libraries like OpenGL/CL/AL.

Geospatial

Libraries for working with geospatial data and algorithms.

  • GeoTools - Library that provides tools for geospatial data.
  • GraphHopper - Road-routing engine. Used as a Java library or standalone web service.
  • Spatial4j - General-purpose spatial/geospatial library.

GUI

Libraries to create modern graphical user interfaces.

High Performance

Everything about high-performance computation, from collections to specific libraries.

HTTP Clients

Libraries that assist with creating HTTP requests and/or binding responses.

  • OkHttp - HTTP+SPDY client.
  • Play WS - Typesafe client with reactive streams and caching.
  • Retrofit - Typesafe REST client.

IDE

Integrated development environments that try to simplify several aspects of development.

  • Eclipse - Established open-source project with support for lots of plugins and languages.
  • IntelliJ IDEA c - Supports many JVM languages and provides good options for Android development. The commercial edition targets the enterprise sector.
  • NetBeans - Provides integration for several Java SE and EE features, from database access to HTML5.
  • Visual Studio Code - Provides Java support for lightweight projects with a simple, modern workflow by using extensions from the internal marketplace.

JSON

Libraries for serializing and deserializing JSON to and from Java objects.

  • Gson - Serializes objects to JSON and vice versa. Good performance with on-the-fly usage.
  • Jackson-datatype-money - Open-source Jackson module to support JSON serialization and deserialization of JavaMoney data types.
  • Jackson - Similar to GSON, but offers performance gains if you need to instantiate the library more often.

JVM and JDK

Current implementations of the JVM/JDK.

  • Adopt Open JDK - OpenJDK builds which allows to choose between HotSpot and OpenJ9.
  • Graal - Polyglot embeddable JVM.
  • Open JDK - Open JDK distributed by Oracle.
  • RedHat Open JDK - RedHat's OpenJDK distribution.
  • Zulu - OpenJDK builds for Windows, Linux, and Mac OS X.

Logging

Libraries that log the behavior of an application.

  • Apache Log4j 2 - Complete rewrite with a powerful plugin and configuration architecture.

  • Kibana - Analyzes and visualizes log files. Some features require payment.

  • Logback - Robust logging library with interesting configuration options via Groovy.

  • Logstash - Tool for managing log files.

  • SLF4J - Abstraction layer/simple logging facade.

Machine Learning

Tools that provide specific statistical algorithms for learning from data.

  • Apache Spark - Data analytics cluster-computing framework.
  • Weka - Collection of algorithms for data mining tasks ranging from pre-processing to visualization.

Messaging

Tools that help send messages between clients to ensure protocol independency.

  • Aeron - Efficient, reliable, unicast and multicast message transport.
  • Apache ActiveMQ - Message broker that implements JMS and converts synchronous to asynchronous communication.
  • Apache Camel - Glues together different transport APIs via Enterprise Integration Patterns.
  • Apache Kafka - High-throughput distributed messaging system.
  • EventBus - Simple publish/subscribe event bus.
  • JeroMQ - Implementation of ZeroMQ.
  • RabbitMQ Java client - RabbitMQ client.
  • Smack - Cross-platform XMPP client library.

Miscellaneous

Everything else.

  • Codename One - Cross-platform solution for writing native mobile apps.

  • JavaCV - Java interface to OpenCV, FFmpeg, and more.

  • Java Object Diff - Compare Java objects with a very usable out-of-the-box configuration.

  • Maven Wrapper - Analogue of Gradle Wrapper for Maven, allows building projects without installing maven.

  • OpenRefine - Tool for working with messy data: cleaning, transforming, extending it with web services and linking it to databases.

  • Polyglot for Maven - Extensions for Maven 3.3.1+ that allows writing the POM model in dialects other than XML.

Native

For working with platform-specific native libraries.

  • JavaCPP - Provides efficient and easy access to native C++.
  • JNA - Work with native libraries without writing JNI. Also provides interfaces to common system libraries.
  • JNR - Work with native libraries without writing JNI. Also provides interfaces to common system libraries. Same goals as JNA, but faster, and serves as the basis for the upcoming Project Panama.

Networking

Libraries for building network servers.

  • Finagle - Extensible RPC system for constructing high-concurrency servers. It implements uniform client and server APIs for several protocols, and is protocol-agnostic to simplify implementation of new protocols.
  • gRPC - RPC framework based on protobuf and HTTP/2.
  • KryoNet - Provides a clean and simple API for efficient TCP and UDP client/server network communication using NIO and Kryo.
  • MINA - Abstract, event-driven async I/O API for network operations over TCP/IP and UDP/IP via Java NIO.
  • Netty - Framework for building high-performance network applications.

ORM

APIs that handle the persistence of objects.

  • Ebean - Provides simple and fast data access.
  • Hibernate - Robust and widely used, with an active community.
  • SimpleFlatMapper - Simple database and CSV mapper.

PaaS

Java platform as a service.

  • AWS Lambda c - Serverless computation.
  • Heroku c - Abstract computing environments.
  • Jelastic c - Supports Tomcat, Jetty, GlassFish, JBoss, TomEE and WildFly.

PDF

Tools to help with PDF file creation.

Performance analysis

Tools for performance analysis, profiling and benchmarking.

  • JMH - a Java harness for building, running, and analysing nano/micro/milli/macro benchmarks written in Java and other languages targeting the JVM.
  • JProfiler c - Database profiling for JDBC, JPA and NoSQL, with JEE support.

Platform

Frameworks that are suites of multiple libraries encompassing several categories.

Other

  • Spring - Provides many packages for dependency injection, aspect-oriented programming, security, etc.

Processes

Libraries that help the management of operating system processes.

  • zt-exec - Provides a unified API to Apache Commons Exec and ProcessBuilder.

Reactive libraries

Libraries for developing reactive applications.

  • Akka - Toolkit and runtime for building concurrent, distributed, fault-tolerant and event-driven applications.
  • RxJava - Allows for composing asynchronous and event-based programs using observable sequences.
  • vert.x - Polyglot event-driven application framework.

REST Frameworks

Frameworks specifically for creating RESTful services.

  • Dropwizard - Opinionated framework for setting up modern web applications with Jetty, Jackson, Jersey and Metrics.
  • Spark - Sinatra inspired framework.
  • Swagger - Standard, language-agnostic interface to REST APIs.

Science

Libraries for scientific computing, analysis and visualization.

  • GraphStream - Library for modeling and analyzing dynamic graphs.
  • JFreeChart - 2D chart library for Swing, JavaFX and server-side applications.
  • XChart - A light-weight library for plotting data. Many customizable chart types are available.

Security

Libraries that handle security, authentication, authorization or session management.

  • Apache Shiro - Performs authentication, authorization, cryptography and session management.
  • Bouncy Castle - All-purpose cryptographic library and JCA provider offering a wide range of functions, from basic helpers to PGP/SMIME operations.

Serialization

Libraries that handle serialization with high efficiency.

  • FlatBuffers - Memory-efficient serialization library that can access serialized data without unpacking and parsing it.
  • Kryo - Fast and efficient object graph serialization framework.
  • MessagePack - Efficient binary serialization format.

Server

Servers specifically used to deploy applications.

  • Apache Tomcat - Robust, all-round server for Servlet and JSP.
  • Jetty - Provides a Web server and javax.servlet container, plus support for HTTP/2, WebSocket, OSGi, JMX, JNDI, JAAS and many other integrations.
  • WildFly - Formerly known as JBoss and developed by Red Hat with extensive Java EE support.

Template Engine

Tools that substitute expressions in a template.

  • Handlebars.java - Logicless and semantic Mustache templates.
  • Thymeleaf - Aims to be a substitute for JSP and works for XML files.

Testing

Tools that test from model to the view.

Asynchronous

Tools that simplify testing asynchronous services.

BDD

Testing for the software development process that emerged from TDD and was heavily influenced by DDD and OOAD.

  • Cucumber - Provides a way to describe features in a plain language which customers can understand.

Fixtures

Everything related to the creation and handling of random data.

Frameworks

Provide environments to run tests for a specific use case.

  • Arquillian - Integration and functional testing platform for Java EE containers.
  • JUnit - Common testing framework.

Matchers

Libraries that provide custom matchers.

  • AssertJ - Fluent assertions that improve readability.

Miscellaneous

Other stuff related to testing.

Mocking

Tools which mock collaborators to help testing single, isolated units.

  • JMockit - Integration testing, API mocking and faking, and code coverage.
  • Mockito - Mocking framework that lets you write tests with a clean and simple API.

Parameterization

Simplifies the writing of parameterized tests.

Utility

Libraries which provide general utility functions.

  • Gephi - Cross-platform for visualizing and manipulating large graph networks.
  • Guava - Collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O, and more.
  • JGit - A lightweight, pure Java library implementing the Git version control system.

Version Managers

Utilities that help create the development shell environment and switch between different Java versions.

  • jabba - Java Version Manager inspired by nvm. Supports Mac OS X, Linux and Windows.

Web Crawling

Libraries that analyze the content of websites.

  • jsoup - Scrapes, parses, manipulates and cleans HTML.

Web Frameworks

Frameworks that handle the communication between the layers of a web application.

  • Play - Built on Akka, it provides predictable and minimal resource consumption (CPU, memory, threads) for highly-scalable applications in Java and Scala.

Resources

Awesome Lists

Awesome lists related to the Java & JVM ecosystem.

Communities

Active discussions.

Frontends

Websites that provide a frontend for this list. Please note, there won't be an official website. We don't associate with a particular website and everybody is allowed to create one.

Influential Books

Books that made a big impact and are still worth reading.

Podcasts and Screencasts

Something to look at or listen to while programming.

Twitter

Websites

Sites to read.

Contributing

Contributions are very welcome!

Please have a look at the CONTRIBUTING guidelines.

About

Technology CTI used/uses/researched

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published