-
Notifications
You must be signed in to change notification settings - Fork 1
Client java
github-actions[bot] edited this page Aug 31, 2026
·
2 revisions
Java client library for ThemisDB multi-model database with full ACID transaction support.
- β Full CRUD Operations - Get, Put, Delete operations across all data models
- β ACID Transactions - BEGIN/COMMIT/ROLLBACK with isolation level support
- β Multi-Model Support - Relational, Document, Graph, and Vector data models
- β AQL Query Support - Advanced Query Language for complex queries
- β Thread-Safe - Concurrent operations with ReadWriteLock
- β Try-With-Resources - AutoCloseable transactions for automatic cleanup
- β Type-Safe - Generic methods with compile-time type checking
- β Java 11+ - Modern Java with java.net.http.HttpClient
<dependency>
<groupId>com.themisdb</groupId>
<artifactId>themisdb-client</artifactId>
<version>0.1.0-beta.1</version>
</dependency>implementation 'com.themisdb:themisdb-client:0.1.0-beta.1'import com.themisdb.client.ThemisClient;
import java.util.List;
import java.util.Map;
import java.util.HashMap;
public class Example {
public static void main(String[] args) throws Exception {
// Create client
ThemisClient client = new ThemisClient(List.of("http://localhost:8080"));
// Put a document
Map<String, Object> user = new HashMap<>();
user.put("name", "Alice");
user.put("email", "alice@example.com");
user.put("age", 30);
client.put("document", "users", "user1", user);
// Get the document back
Map result = client.get("document", "users", "user1", Map.class);
System.out.println("User: " + result.get("name"));
// Delete the document
client.delete("document", "users", "user1");
}
}import com.themisdb.client.*;
import java.util.Map;
import java.util.HashMap;
public class TransactionExample {
public static void main(String[] args) throws Exception {
ThemisClient client = new ThemisClient(List.of("http://localhost:8080"));
// Try-with-resources automatically rolls back on exception
try (Transaction tx = client.beginTransaction(
new TransactionOptions(IsolationLevel.SNAPSHOT))) {
// All operations are atomic
Map<String, Object> account1 = new HashMap<>();
account1.put("balance", 1000);
tx.put("relational", "accounts", "acc1", account1);
Map<String, Object> account2 = new HashMap<>();
account2.put("balance", 500);
tx.put("relational", "accounts", "acc2", account2);
// Read within transaction
Map acc1Data = tx.get("relational", "accounts", "acc1", Map.class);
System.out.println("Account 1 balance: " + acc1Data.get("balance"));
// Commit transaction
tx.commit();
System.out.println("Transaction committed successfully");
} catch (Exception e) {
// Transaction automatically rolled back
System.err.println("Transaction failed: " + e.getMessage());
}
}
}import com.themisdb.client.*;
import java.util.Map;
public class MoneyTransferExample {
public static void transferMoney(ThemisClient client,
String fromAccount,
String toAccount,
double amount) throws Exception {
try (Transaction tx = client.beginTransaction(
new TransactionOptions(IsolationLevel.SNAPSHOT))) {
// Get current balances
Map from = tx.get("relational", "accounts", fromAccount, Map.class);
Map to = tx.get("relational", "accounts", toAccount, Map.class);
double fromBalance = ((Number) from.get("balance")).doubleValue();
double toBalance = ((Number) to.get("balance")).doubleValue();
// Check sufficient funds
if (fromBalance < amount) {
throw new IllegalStateException("Insufficient funds");
}
// Update balances
from.put("balance", fromBalance - amount);
to.put("balance", toBalance + amount);
tx.put("relational", "accounts", fromAccount, from);
tx.put("relational", "accounts", toAccount, to);
// Commit - both updates succeed or both fail
tx.commit();
System.out.println("Transfer completed: $" + amount);
}
}
public static void main(String[] args) throws Exception {
ThemisClient client = new ThemisClient(List.of("http://localhost:8080"));
transferMoney(client, "alice", "bob", 100.0);
}
}import com.themisdb.client.ThemisClient;
import java.util.List;
import java.util.Map;
public class QueryExample {
public static void main(String[] args) throws Exception {
ThemisClient client = new ThemisClient(List.of("http://localhost:8080"));
// Execute AQL query
String query = "SELECT * FROM users WHERE age > 25";
List<Map> results = client.query(query, List.class);
for (Map user : results) {
System.out.println("User: " + user.get("name"));
}
}
}import com.themisdb.client.ThemisClient;
import java.time.Duration;
import java.util.List;
public class TimeoutExample {
public static void main(String[] args) {
// Create client with 60-second timeout
ThemisClient client = new ThemisClient(
List.of("http://localhost:8080"),
Duration.ofSeconds(60)
);
// Use client...
}
}-
ThemisClient(List<String> endpoints)- Create client with default 30s timeout -
ThemisClient(List<String> endpoints, Duration timeout)- Create client with custom timeout
-
<T> T get(String model, String collection, String uuid, Class<T> clazz)- Get a record -
void put(String model, String collection, String uuid, Object data)- Put a record -
void delete(String model, String collection, String uuid)- Delete a record -
<T> T query(String query, Class<T> clazz)- Execute AQL query -
Transaction beginTransaction()- Begin transaction with default options -
Transaction beginTransaction(TransactionOptions options)- Begin transaction with options
-
boolean isActive()- Check if transaction is active -
String getTransactionId()- Get transaction ID -
<T> T get(String model, String collection, String uuid, Class<T> clazz)- Get within transaction -
void put(String model, String collection, String uuid, Object data)- Put within transaction -
void delete(String model, String collection, String uuid)- Delete within transaction -
<T> T query(String query, Class<T> clazz)- Query within transaction -
void commit()- Commit transaction -
void rollback()- Rollback transaction -
void close()- AutoCloseable - automatically rolls back if active
-
READ_COMMITTEDβ See only committed data (default). -
SNAPSHOTβ Work with a consistent snapshot as of transaction start.β οΈ Write-skew and phantom-read anomalies are possible at SNAPSHOT isolation. UseSERIALIZABLEwhen your workload must enforce strict application invariants (e.g. double-booking prevention, over-withdrawal protection). -
SERIALIZABLEβ Full serializability via SSI / predicate locking. Prevents write skew and phantom reads. May abort more transactions and has higher latency.
-
TransactionOptions()- Default (READ_COMMITTED) -
TransactionOptions(IsolationLevel isolationLevel)- With isolation level -
TransactionOptions(IsolationLevel isolationLevel, Duration timeout)- Full options
-
IsolationLevel getIsolationLevel()- Get isolation level -
TransactionOptions setIsolationLevel(IsolationLevel level)- Set isolation level (chainable) -
Duration getTimeout()- Get timeout -
TransactionOptions setTimeout(Duration timeout)- Set timeout (chainable)
ThemisDB supports four data models:
- Relational - Traditional tables with typed columns
- Document - JSON document storage
- Graph - Nodes and edges with properties
- Vector - High-dimensional vector embeddings
All data models support transactions and can be used together in a single transaction.
import com.themisdb.client.*;
import java.io.IOException;
public class ErrorHandlingExample {
public static void main(String[] args) {
ThemisClient client = new ThemisClient(List.of("http://localhost:8080"));
try (Transaction tx = client.beginTransaction()) {
// Perform operations
tx.put("document", "users", "user1", data);
// Simulate error
if (someCondition) {
throw new RuntimeException("Business logic error");
}
tx.commit();
} catch (IllegalStateException e) {
// Transaction already committed/rolled back
System.err.println("Transaction state error: " + e.getMessage());
} catch (IOException | InterruptedException e) {
// Network or I/O error
System.err.println("Communication error: " + e.getMessage());
} catch (Exception e) {
// Other errors - transaction automatically rolled back
System.err.println("Transaction failed: " + e.getMessage());
}
}
}The ThemisClient and Transaction classes are thread-safe:
- ThemisClient - Can be shared across threads
- Transaction - Thread-safe with ReadWriteLock for concurrent operations
- AutoCloseable - Transactions automatically clean up in try-with-resources
# Clone repository
git clone https://github.com/makr-code/ThemisDB.git
cd ThemisDB/clients/java
# Build with Maven
mvn clean install
# Run tests
mvn test
# Run integration tests (requires running ThemisDB server)
mvn verify -Pintegration- Java 11 or higher
- ThemisDB server running on accessible endpoint
- Gson 2.10.1 - JSON serialization
- JUnit 5 - Testing framework (test scope)
Apache License 2.0
For questions and support:
- GitHub Issues: https://github.com/makr-code/ThemisDB/issues
- Documentation: https://github.com/makr-code/ThemisDB/tree/main/docs
- Initial Beta release
- Full ACID transaction support
- Multi-model CRUD operations
- AQL query support
- Thread-safe operations
- Try-with-resources support
ThemisDB 1.9.0-beta Β· Home Β· Module-Index Β· GitHub Β· Issues
ThemisDB 1.9.0-beta Β· Home Β· Wiki-Index Β· Module-Index Β· FAQ Β· Quick-Reference Β· GitHub Β· Issues Β· Discussions Β· License
- Batch Operations
- Best Practices
- CRUD Tutorial
- Custom Document Ingestion
- Getting Started Tutorial
- Interactive Examples
- Schema Design
- Video Tutorials
- AQL Reference
- AQL Examples
- AQL Overview
- AQL Feature Roadmap
- AQL Geospatial Guide
- AQL LLM Migration Guide
- AQL API
- AQL Grammar (EBNF)
- AQL Root Overview
- AQL Examples (root)
- API Reference
- API Module README
- OpenAPI Overview
- Client SDK Overview
- SDK Overview
- Operations
- Operations Overview
- Operations Runbook
- Operations Handbook
- ThemisCtl Admin Guide
- Pipeline E2E SOPs
- Deploy Overview
- Docker Overview
- Docker Hub README
- Helm Overview
- Packaging Overview
- Operator Overview
- Security Policy
- Production Hardening Checklist
- Security Hardening Guide
- Encryption Key Management
- Access Control Framework
- Zero Trust Policy
- API Authentication & Authorization
- HSM Production Setup
- PKCS11 Integration
- DSGVO / SOC2 Checklist
- Access Model Runbooks
- Access Model Dashboard
- Maturity Automation Runbook
- Access Review Automation
- Access Model Dashboard
- Access Model Runbooks
- Rights Revocation
- Dr Checklists
- Dr Testing
- Incident Response Playbook
- Incident Response Testing
- GPU Oom Recovery
- Grammar Debugging
- Metrics Scrape Troubleshooting
- Model Swap Procedure
- Quota Tuning
- Subagent Deployment
- Logging Configuration
- Content Model
- Crypto & Keys
- Feature Flags Reference
- Modular Architecture Roadmap
- Modularization Guide
- Module Architecture Index
- PostgreSQL Wire Protocol
- Query Scheduling
- Raft Consensus Design
- Resource Pooling
- Source Directory Guide
- Unified Access Model
- E1 001 Layered Retrieval Design
- E1 002 Ann Abstraction Strategy
- E1 003 Tensor Summary Types
- E1 004 Lora Package Distinction
- E1 005 Model Switch Compatibility
- E1 006 Federated Tensor Summaries
- E2 001 Evaluation Framework Design
- E2 002 Hardware Profile Strategy
- E2 003 Query Planner Routing Model
- E2 004 Approximation Governance Rules
- E2 005 Cross Layer Fallback Confidence Policy
- E3 001 Distributed Tensor Design
- E3 002 Manifest Coordination Strategy
- E3 003 Recovery And Erasure Choice
- E3 004 Tensor Fabric Infrastructure
- Contributing
- Contributing (root)
- Code of Conduct
- Support
- Maintainers
- CTest Guide
- Build Quick Reference
- Developer Wiki Index
- Build / Test / CI
- Module Index
- Branching Strategy
- Disabled Stub Policy
- Docs PR Policy
- GA Promotion Sign Off
- Github Milestones Setup
- Maturity Claim Verification Checklist
- Maturity Evidence Registry
- Merge Gate Bot Config
- Merge Gate Status Live
- Phase 1 Closure Report
- Phase Closure Policy
- Phase Dependency Graph
- Phase3 Enforcement Runbook
- Plugin Submodule Rollback
- PR Version Targeting
- PR Version Targeting Backfill
- Production Ready 2026 Delivery Plan
- Query Module Status
- Readme
- Release Promotion Gate Policy
- Release Validation Checklist
- Security Module 5671 Evidence Summary
- Sharding P6 Residual Risk Acceptance
- Sourcecode Compliance Governance
- Updates Development Status Sign Off
- Wave C Implementation Complete
- Blob Storage
- Cuda
- Ethics Ai
- Exporters
- Huggingface
- Image Analysis
- Importers
- RPC
- Scraper
- Themisdb Ai Watermark Detector
- User Storage Encrypted
- Chimera Architecture
- Chimera Future
- Chimera Readme
- Chimera Roadmap
- Covina Fastapi Ingestion Architecture
- Covina Fastapi Ingestion Future
- Covina Fastapi Ingestion Roadmap
- Vcc Base Architecture
- Vcc Base Future
- Vcc Base Roadmap
- Vcc Clara Ingestion Architecture
- Vcc Clara Ingestion Future
- Vcc Clara Ingestion Roadmap
- Vcc Veritas Architecture
- Vcc Veritas Future
- Vcc Veritas Roadmap
- 01 Hello World
- 02 Todo App
- 03 Contact Manager
- 04 Inventory System
- 05 Time Series Monitor
- 06 Graph Social Network
- 07 Vector Search Documents
- 08 Dms Erp System
- 09 Iot Sensor Network
- 10 Drone Image Analysis
- 11 Blog Wiki
- 12 Expense Tracker
- 13 Recipe Manager
- 14 Ecommerce Catalog
- 15 Event Management
- 16 Kanban Board
- 17 Crm
- 18 Realtime Chat
- 19 Recommendation Engine
- 20 Smart Home
- 21 Coding Platform
- 22 AQL Diagram Tool
- 23 Traveling Salesman
- 24 Moral Philosophy Debates
- API Versioning
- Distributed Sharding
- Feedback Plugins
- Geo
- Gnn
- Image Analysis
- Legal Lora Training
- LLM
- Lora Sync
- Migration
- Nlp
- Performance
- Railway
- Replication
- Rope Visualization
- Sample Product Config
- Security
- Client SDK Overview
- Quickstart
- Sdk Enhancements
- Sdk Implementation Summary
- Test Suite Readme
- Go
- Java
- Javascript
- Php
- Python
- Ruby
- Rust
- Typescript
- 01 Grundlegende Operationen
- 02 AQL Queries
- 03 Graph Daten
- 04 Multimodell Anwendung
- 01 Quickstart Guide
- 02 AQL Referenz Kurzuebersicht
- 03 Datenmodellierung Guide
- 04 Uebungsaufgaben
- 05 Best Practices Guide
- Training Documents
- Training Overview
- 01 Einfuehrung Und Uebersicht
- 02 Datenmodelle Und Architektur
- 03 AQL Abfragesprache
- 04 Installation Und Setup
- 05 Anwendungsbeispiele
- Training Presentations
- Dependencies Readme
- Processmonitor Readme
- Themis.admintools.shared Readme
- Themis.aqlquerybuilder Readme
- Themis.aqlquerybuilder Roadmap
- Themis.auditlogviewer Readme
- Themis.auditlogviewer Roadmap
- Themis.classificationdashboard Readme
- Themis.classificationdashboard Roadmap
- Themis.compliancereports Readme
- Themis.compliancereports Roadmap
- Themis.gisviewer.controlpanel Readme
- Themis.gisviewer.controlpanel Roadmap
- Themis.impactanalysisviewer Readme
- Themis.impactanalysisviewer Roadmap
- Themis.ingestiontool Readme
- Themis.ingestiontool Roadmap
- Themis.keyrotationdashboard Readme
- Themis.keyrotationdashboard Roadmap
- Themis.piimanager Readme
- Themis.piimanager Roadmap
- Themis.retentionmanager Readme
- Themis.retentionmanager Roadmap
- Themis.sagaverifier Readme
- Themis.sagaverifier Roadmap
- Themis.usbadmintool Readme
- Themis.usbadmintool Roadmap
- CI Readme
- CI Roadmap
- Compiler Diagnostics Readme
- Compiler Diagnostics Roadmap
- Completion Readme
- Copilot Ollama Router Readme
- Copilot Ollama Router Roadmap
- Gnn Readme
- Gnn Roadmap
- Rope Visualizer Readme
- Rope Visualizer Roadmap
- Tco Calculator Readme
- Tco Calculator Roadmap
- Tests Readme
- Tests Roadmap
- Themis Config Wx Readme
- Themis Docs Builder Readme
- Wikipedia Ingestion Readme