1
0
Fork 0
mirror of https://github.com/akullpp/awesome-java.git synced 2025-02-10 15:45:12 -05:00

Update README.md

Cleanup, added ORM and Database Access
This commit is contained in:
akullpp 2014-07-10 14:12:40 +02:00
parent 83ef7a79a2
commit 4052f1e275

View file

@ -7,6 +7,7 @@ A curated list of awesome Java frameworks, libraries and software. Inspired by [
- [Build Tool](#build-tool) - [Build Tool](#build-tool)
- [Code Analysis](#code-analysis) - [Code Analysis](#code-analysis)
- [Continuous Integration](#continuous-integration) - [Continuous Integration](#continuous-integration)
- [Database Access](#database-access)
- [Date and Time](#date-and-time) - [Date and Time](#date-and-time)
- [Dependency Injection](#dependency-injection) - [Dependency Injection](#dependency-injection)
- [Game Development](#game-development) - [Game Development](#game-development)
@ -17,6 +18,7 @@ A curated list of awesome Java frameworks, libraries and software. Inspired by [
- [Messaging](#messaging) - [Messaging](#messaging)
- [Miscellaneous](#miscellaneous) - [Miscellaneous](#miscellaneous)
- [Natural Language Processing](#natural-language-processing) - [Natural Language Processing](#natural-language-processing)
- [ORM](#orm)
- [Permissions](#permissions) - [Permissions](#permissions)
- [Template Engine](#template-engine) - [Template Engine](#template-engine)
- [Testing](#testing) - [Testing](#testing)
@ -60,6 +62,14 @@ A curated list of awesome Java frameworks, libraries and software. Inspired by [
* [Jenkins](http://jenkins-ci.org/) * [Jenkins](http://jenkins-ci.org/)
* [Hudson](http://hudson-ci.org/) * [Hudson](http://hudson-ci.org/)
## Database Access
*Everything which simplifies the access to the database*
* [DBeaver](http://dbeaver.jkiss.org/) - Graphical database manager
* [JDBI](http://jdbi.org/) - Simplification of JDBC
* [jOOQ](http://www.jooq.org/) - Generates typesafe code based on your SQL schema
## Date and Time ## Date and Time
*Libraries related to date and time.* *Libraries related to date and time.*
@ -131,6 +141,13 @@ A curated list of awesome Java frameworks, libraries and software. Inspired by [
* [Apache OpenNLP](https://opennlp.apache.org/) * [Apache OpenNLP](https://opennlp.apache.org/)
* [LingPipe](http://alias-i.com/lingpipe/) * [LingPipe](http://alias-i.com/lingpipe/)
## ORM
*APIs which handle the persistence of objects*
* [EclipseLink](https://www.eclipse.org/eclipselink/)
* [Hibernate](http://hibernate.org/orm/)
## Permissions ## Permissions
*Libraries that handle role/rights with associated permissions* *Libraries that handle role/rights with associated permissions*