Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Spring Framework Petclinic | 380 | 3 months ago | apache-2.0 | CSS | ||||||
A Spring Framework application based on JSP, Spring MVC, Spring Data JPA, Hibernate and JDBC | ||||||||||
Cas_sso_record | 207 | 5 years ago | 3 | Java | ||||||
CAS实现SSO单点登录项目示例(基本认证流程,代理认证流程,Iframe实现SSO,Restful API实现SSO,JWT认证流程等等) | ||||||||||
Aceql Http | 90 | 7 months ago | 33 | February 22, 2023 | other | Java | ||||
AceQL HTTP is a framework of REST like http APIs that allow to access to remote SQL databases over http from any device that supports http. | ||||||||||
Jdbc Performance Logger | 80 | 1 | 2 | 2 years ago | 7 | May 29, 2018 | 7 | other | Java | |
A JDBC driver wrapper and GUI to analyze statement performance | ||||||||||
Learning Servlet | 63 | 3 years ago | Java | |||||||
:frog::gun: 老年人的Servlet代码 | ||||||||||
Docker Pega Web Ready | 50 | 18 days ago | 9 | apache-2.0 | Shell | |||||
Docker project for generating a tomcat docker image for Pega | ||||||||||
Sales Order System | 33 | 2 months ago | 11 | unlicense | Java | |||||
Spring Web MVC + JPA + Hibernate + JSP + JSTL application | ||||||||||
Custom Cas | 14 | 11 years ago | 1 | Java | ||||||
Best Practice - Setting Up CAS Locally using the Maven3 WAR Overlay Method | ||||||||||
Tracedemo | 14 | 6 years ago | 2 | Java | ||||||
Trace app and Server 运动类 轨迹 demo tomcat | ||||||||||
Javaweblearning | 13 | 3 years ago | Java | |||||||
The note of javaweb learning. |
Provides a number of modules for your Bootique apps to work with JDBC data stores:
bootique-jdbc - an abstract module providing
injectable configurable map of named JDBC connection pools (java.sql.DataSource
instances). Normally you won't be
importing this module directly. It will be added automatically as a transitive dependency of concrete modules.
There are currently two choices shown below - Tomcat and Hikari.
bootique-jdbc-tomcat - a concrete module that provides configurable Tomcat Connection Pool.
bootique-jdbc-hikaricp - a concrete module that provides configurable Hikari Connection Pool.
bootique-jdbc-tomcat-instrumented -
a variation of bootique-jdbc-tomcat
with support for performance metrics.
bootique-jdbc-hikaricp-instrumented -
a variation of bootique-jdbc-hikaricp
with support for performance metrics and health checks.
bootique-jdbc-junit5 - a DB testing facility for JUnit 5 that helps to prepare test databases (in-memory or Docker-based), datasets and run assertions against the DB data. Supports API-based and CSV-based data sets. Can be used to test any apps that read or write from/to RDBMS. E.g. Bootique JDBC apps, non-Bootique JDBC apps, Cayenne apps.
bootique-jdbc-test - a DB testing
facility for JUnit 4. Not as advanced and somewhat convoluted compared to bootique-jdbc-junit5
.
See usage example bootique-jdbc-demo.