Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sepatel/tekniq
A framework designed around Kotlin providing Restful HTTP Client, JDBC DSL, Loading Cache, Configurations, Validations, and more
https://github.com/sepatel/tekniq
config dsl gradle java jdbc kotlin rest spark
Last synced: about 2 months ago
JSON representation
A framework designed around Kotlin providing Restful HTTP Client, JDBC DSL, Loading Cache, Configurations, Validations, and more
- Host: GitHub
- URL: https://github.com/sepatel/tekniq
- Owner: sepatel
- License: mit
- Created: 2016-10-22T18:08:43.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-05-23T17:01:04.000Z (8 months ago)
- Last Synced: 2024-11-16T03:38:36.477Z (3 months ago)
- Topics: config, dsl, gradle, java, jdbc, kotlin, rest, spark
- Language: Kotlin
- Homepage:
- Size: 416 KB
- Stars: 38
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tekniq
A framework designed around Kotlin. Modules include
## [tekniq-core (click for more info)](https://github.com/sepatel/tekniq/tree/master/tekniq-core)
A suite of tools that have no dependencies on other libraries providing capabilities such as loading cache,
configurations, tracking tools, and more.**Gradle**
```
implementation "io.tekniq:tekniq-core:0.+"
```**Maven Dependency**
```
io.tekniq
tekniq-core
0.19.6```
## [tekniq-cache (click for more info)](https://github.com/sepatel/tekniq/tree/master/tekniq-cache)
A kotlin friendly wrapper around Caffeine that conforms to the TqCache interface making it easy to switch to a more
advanced loading cache implementation.**Gradle**
```
implementation "io.tekniq:tekniq-cache:0.+"
```**Maven Dependency**
```
io.tekniq
tekniq-cache
0.19.6```
## [tekniq-jdbc (click for more info)](https://github.com/sepatel/tekniq/tree/master/tekniq-jdbc)
Provides extensions to the DataSource and Connection objects allowing one to more cleanly and easily work with the JDBC
APIs with the kotlin idiom supported. Does not require overhead of object mappings or such.**Gradle**
```
implementation "io.tekniq:tekniq-jdbc:0.+"
```**Maven Dependency**
```
io.tekniq
tekniq-jdbc
0.19.6```
## [tekniq-rest (click for more info)](https://github.com/sepatel/tekniq/tree/master/tekniq-rest)
A tool utilizing jackson-mapper for making RESTful calls to web services.
**Gradle**
```
implementation "io.tekniq:tekniq-rest:0.+"
```**Maven Dependency**
```
io.tekniq
tekniq-rest
0.19.6```