Added jdbi3, cucumber, ebean content (#2209)
Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>pull/2186/head^2
parent
54864017ad
commit
edd7a7c31d
3 changed files with 11 additions and 12 deletions
@ -1,6 +1,8 @@ |
||||
# Ebean |
||||
|
||||
Ebean is an object–relational mapping product written in Java. It is designed to be simpler to use and understand than JPA (Java Persistence API) or JDO (Java Data Objects) products. |
||||
Ebean is an object-relational mapping tool written in Java. It supports the standard JPA annotations for declaring entities. However, it provides a much simpler API for persisting. In fact, one of the points worth mentioning about the Ebean architecture is that it is sessionless, meaning it does not fully manage entities. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Site' href='https://ebean.io/'>Ebean</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Doc' href='https://ebean.io/docs/'>Ebean Documentation</BadgeLink> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.baeldung.com/ebean-orm'>Guide to Ebean</BadgeLink> |
@ -1,8 +1,7 @@ |
||||
# Jdbi3 |
||||
|
||||
Jdbi provides convenient, idiomatic access to relational data in Java. Jdbi 3 is the third major release which introduces enhanced support for Java 8, countless refinements to the design and implementation, and enhanced support for modular plugins. |
||||
|
||||
Jdbi is built on top of JDBC. If your database has a JDBC driver, you can use Jdbi with it. |
||||
Jdbi is an open source Java library (Apache license) that uses lambda expressions and reflection to provide a friendlier, higher level interface than JDBC to access the database. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Site' href='https://jdbi.org/'>JDBI</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Site' href='https://jdbi.org/'>Jdbi</BadgeLink> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.baeldung.com/jdbi'>Jdbi Tutorial</BadgeLink> |
@ -1,11 +1,9 @@ |
||||
# Cucumber JVM |
||||
|
||||
Cucumber-JVM is a pure Java implementation of Cucumber. You can [run](https://cucumber.io/docs/cucumber/api/#running-cucumber) it with the tool of your choice. |
||||
|
||||
Cucumber-JVM also integrates with all the popular [Dependency Injection containers](https://cucumber.io/docs/installation/java/#dependency-injection). |
||||
Cucumber is a testing tool that supports Behavior Driven Development (BDD). It offers a way to write tests that anybody can understand, regardless of their technical knowledge. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://cucumber.io'>Cucumber - Official Website</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Repo' href='https://github.com/cucumber/cucumber-jvm'>Cucumber JVM - GitHub</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Site' href='https://cucumber.io/'>Cucumber</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Doc' href='https://cucumber.io/docs/cucumber/'>Cucumber Documentation</BadgeLink> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://automationpanda.com/2017/10/24/cucumber-jvm-for-java/'>Cucumber-JVM for Java</BadgeLink> |
||||
<BadgeLink colorScheme='purple' badgeText='Watch' href='https://www.youtube.com/watch?v=jCzpxvAJoZM'>Cucumber-JVM 5 with Enhanced Cucumber Expression</BadgeLink> |
Loading…
Reference in new issue