Java libraries Page

Java libraries



Return to Java outline, Java, Java bibliography, Java courses, Java terms, Java topics

" (JPG4e)

Fair Use Sources


Fair Use Sources:
* 1491938692 (JPG4e)

Computer science topics


DELETE THESE AFTER RESEARCHING:
* Elizabeth Carretto g>The Road to the Continuous Monitoring
* Top 5 machine learning libraries for Java



=Top 10 Java libraries for saving time

=

"There are a lot of Java libraries out there. How can a busy developer separate the wheat from the chaff? In this article, Martin Patsov explains why he loves open source Java libraries and goes over his top 10 list."

"There are lots of Java libraries out there and it’s hard to sort through them all. Personally, I’m a library evangelist. Here are a few reasons why I love them!"

"Libraries are an important part of the open source ecosystem. Open source libraries usually have great communities standing behind them. After all, it’s hard for a library to exist without a community putting in the effort to support and develop it."

"Libraries keep us from having to reinvent the wheel every time we code. Reuse as much code as possible! Using libraries saves times, as does not implementing every single line of code by myself. Instead, I use that time to do things like spend time with family and friends."

"There are hundreds of thousands of libraries out there. I want to save you a lot of time in research and choosing the best ones, the most well documented ones, the most supported and up-to-date ones as well the ones that should save as much time as possible."

Java standard libraries



1. Java standard libraries - Java standard library

"A lot of people underestimate or do not fully know the Java standard libraries and do not know how to unleash its full power when programming Java or they don’t use it at all. Here is a brief description of some of the libraries:"

* "java.lang is always implicitly being imported as it contains everything you basically cannot program without Java String, Java Double, Java Enum, Java Math, etc."

* "In java.util you can find all the Java collections and Java data structures available in Java."

* "java.io for reading files using Java, working with pipes using Java, Java streams and similar."

* "java.nio is the alternative to java.io and stands for Java non-blocking I/O. It allows intensive use of the input/output operations in Java."

* "java.math provides functionality for working with arbitrary-precision decimal (Java BigDecimal) and Java integer (BigInteger) Java values."

* "java.net is being used for working with Java sockets, creating connections or in short – creating Java networking applications."

* "In Java we also have libraries for working with Java GUI: javax.swing (extension of the older java.awt)"

* "We even can play music and create midi files with java.sound"

You can find more about the Java Standard library here.


JHipster



2. JHipster

JHipster is a Java development platform to generate, develop and deploy Spring Boot + Angular Web Framework applications and Spring microservices.

Man, this one have saved me months of development . I could definitely say that this one is my personal favorite and that I keep a special place for it in my heart. It basically generates your whole application from your front-end to the back-end. The only thing you need to add is the business logic behind the Java architecture. The main and most important libraries, which are included in the generated project are:

=Spring Boot

=
Spring Boot – helps you accelerate and facilitate application development

=Angular

=
Angular / AngularJSJavaScript framework

You can find more about JHipster here.


Maven



3. Maven

Maven is software for Java project management and a comprehension Java tool. Honestly, Maven is great. If you’ve never used Maven before, you’re missing out. Sometimes, I wonder how it was even possible to create enterprise Java applications prior to its creation.

Maven can manage all your Java project dependencies, Java configurations and Java build configurations and even Java documentation only by specifying them in a single pom.xml file.

You can find more about Maven here.



Apache Commons



4. Apache Commons

Apache Commons is actually a whole project focused on creating Java libraries.

Here is a short list of some of the best and most commonly used libraries:

* Commons Math: The Apache Commons Mathematics Library – the name says it all: this library contains components allowing advanced mathematics and statistics operations and computations

* Commons CLI – provides API for parsing command line arguments in Java. Why will you even bother creating an application without the ability to pass parameters and control its behavior?!

* Commons CSV – whatever you are developing, at some point you are going to face the necessity of using csv files. This include opening, reading, editing, saving and creating them. I suggest using the RFC 4180 format from the CSVFormat class and UTF-8 encoding when saving files in Java and creating files in Java.

* Commons IO – it is being used for easier execution of input/output operations. Checking at least the ReversedLinesFileReader is definitely worth it.

You can find more about Apache Commons here.



Guava



5. Guava

"Guava is the Google Core Libraries for Java. It is a Java library for extending the basic Java collection functionalities"

"This is a Java utility I absolutely have to mention. Did you ever needed ordering for your Java collections? Did you ever need to compare the contents there? What about Java advanced sort and Java compare on multiple columns with multiple conditions? I present you one of my most favorite Java components in this Java library:

* ComparisonChain is used for implementing advanced and complicated Java comparison sort for Java collections.

You can find more about Guava here.


google-gson



6. google-gson

google-gson is helpful for converting Java Objects to JSON and vice versa.

"This Java JSON library is especially helpful when developing mobile applications and creating/using Java REST APIs as well as in any case you would need to convert a Java Object to its JSON representation and vice versa."

You can find more about google-gson here.


Hibernate-ORM



7. Hibernate-ORM

"Hibernate-ORM is an object relational mapper. It’s used for persisting of data in relational databases. It provides an easier and more abstract way of doing that for the developers. It uses JDBC in its implementation. Hibernate is also an implementation of the JPA specification."

You can find more about Hibernate ORM here.


Mockito


8. Mockito

Mockito is a mocking framework. "Mockito enables you to create mocks and write tests easier with simpler and cleaner code. Writing tests has never been easier!"

You can find more about Mockito here.


JUnit



9. JUnit

"JUnit is a free Java unit testing framework for writing Java unit tests. It provides functionality for conducting repeatable tests on your Java code. You just need to be careful not to get obsessed with the numbers (percentage of code coverage). Bigger code coverage does not always mean better code and bug-less code."

You can find more about JUnit here.


Log4j and Slf4j



10. Log4j and Slf4j

"The two of these are both logging frameworks. Slf4j represents an abstraction for other logging frameworks (such as Log4j). On the other hand, Log4j is just a simple logging framework."

You can find more about Log4j here and Slf4j here.


Fair Use Sources:
* https://jaxenter.com/top-10-java-libraries-137587.html, by Martin Patsov, September 27, 2017




YouTube Videos


Cloud Monk recommends the following YouTube video:

{{youtube>pmmP-7d6pWw}}

"The Java language has passed its 20th anniversary, and with it comes an incredible range of tools libraries to choose from; sometimes there are actually too many choices for the same task. This presentation covers those libraries that have risen to the top, having proved themselves to be worthy of a place in every developer’s toolbox, for both production and testing code. It also discusses some fairly new libraries that are bound to make a big impact in the ecosystem."

=Production Libraries

=
* Guice
* OkHttp
* Retrofit
* JDeferred
* RxJava
* Mbassador
* Lombok
* Sl4j

=Java Testing Libraries

=
Java Testing Libraries include:
* JUnitParams
* Mockito
* Awaitility
* Spock
* WireMock


GitHub Tags


GitHub Tags:



External Sites



=Main

=

=Interesting Articles

=

=Support Resources, FAQs, Q&A, Docs, Blogs

=
* https://github.com/search?q=java+libraries - GitHub Search
* https://docs.microsoft.com/en-us/search/?terms=java%20libraries - Microsoft Documentation Search
* https://aws.amazon.com/search/?searchQuery=java+libraries - AWS Search
* https://cloud.google.com/s/results?q=java%20libraries - GCP Search
* https://stackoverflow.com/search?q=java+libraries - StackOverflow Search
* https://reddit.com/search?q=java+libraries - Reddit Search
* https://quora.com/search?q=java+libraries - Quora Search
* https://medium.com/search?q=java+libraries - Medium Blog Search

=Search Engines

=
* https://duckduckgo.com/?q=java+libraries - DuckDuckGo Search
* https://mojeek.com/search?q=java+libraries - Mojeek Search
* https://qwant.com/?q=java+libraries - Qwant Search
* https://bing.com/search?q=java+libraries - Bing Search
* https://search.yahoo.com/search?p=java+libraries - Yahoo Search
* https://google.com/search?q=java+libraries - Google Search

=Repos and Registries

=
Package Managers Artifact Registries and Repos:
* https://github.com/search?q=java+libraries - GitHub Search
* https://hub.docker.com/search?q=java%20libraries&type=image - Docker Hub Search
* https://pkgs.org/search/?q=java%20libraries
* https://chocolatey.org/packages?q=java+libraries - Chocolatey Search - Chocolatey Package Manager Search
* https://formulae.brew.sh/formula - Homebrew Search - Homebrew Package Manager Search
* https://search.maven.org/search?q=java%20libraries - Maven Search - Maven Package Manager Search
* https://mvnrepository.com/search?q=java+libraries - Maven Repo Search - Maven Package Manager Search
* https://plugins.gradle.org/search?term=java+libraries - Gradle Search - Gradle Package Manager Search
* https://www.npmjs.com/search?q=java%20libraries - NPM Search - NPM Node Package Manager Search
* https://pypi.org/search/?q=java+libraries - PyPI Search - PyPI Python Package Index Search
* https://www.nuget.org/packages?q=java+libraries - Nuget Search - Nuget Package Manager Search
* https://rubygems.org/search?&query=java+libraries - RubyGem Search - RubyGem Package Manager Search


=Courses

=
* https://pluralsight.com/search/?q=java+libraries - Pluralsight Courses
* https://udemy.com/courses/search/?q=java+libraries - Udemy Courses
* https://acloudguru.com/blog/search?s=java+libraries - ACloudGuru Courses
* https://linkedin.com/learning/search?keywords=java+libraries - LinkedIn Learning Courses
* https://coursera.org/search?query=java%20libraries - Coursera Courses

=Books

=
* https://amazon.com/s?k=java+libraries - Amazon Search
* https://audible.com/search?keywords=java+libraries - Audible Search

=Vidcasts-Podcasts

=
* https://podcasts.google.com/search/java%20libraries - Google Podcast Search
* https://open.spotify.com/search/java%20libraries - Spotify Podcast Search
* https://tunein.com/search/?query=java%20libraries - TuneIn.com Podcast Search
* https://podbean.com/site/Search/index?v=java+libraries - PodBean Podcast Search
* https://youtube.com/results?search_query=java+libraries - YouTube Search

{{footer navbar}}