arangodb-spring-boot-parent

Spring boot starter using for arangodb integration.

Лицензия

Лицензия

Категории

Категории

Spring Boot Контейнер Микросервисы
Группа

Группа

io.github.ganchix
Идентификатор

Идентификатор

arangodb-spring-boot-parent
Последняя версия

Последняя версия

1.0.3
Дата

Дата

Тип

Тип

pom
Описание

Описание

arangodb-spring-boot-parent
Spring boot starter using for arangodb integration.
Ссылка на сайт

Ссылка на сайт

https://github.com/ganchix/arangodb-spring-boot-starter
Система контроля версий

Система контроля версий

https://github.com/ganchix/arangodb-spring-boot-starter/tree/master

Скачать arangodb-spring-boot-parent

Имя Файла Размер
arangodb-spring-boot-parent-1.0.3.pom 5 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/io.github.ganchix/arangodb-spring-boot-parent/ -->
<dependency>
    <groupId>io.github.ganchix</groupId>
    <artifactId>arangodb-spring-boot-parent</artifactId>
    <version>1.0.3</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/io.github.ganchix/arangodb-spring-boot-parent/
implementation 'io.github.ganchix:arangodb-spring-boot-parent:1.0.3'
// https://jarcasting.com/artifacts/io.github.ganchix/arangodb-spring-boot-parent/
implementation ("io.github.ganchix:arangodb-spring-boot-parent:1.0.3")
'io.github.ganchix:arangodb-spring-boot-parent:pom:1.0.3'
<dependency org="io.github.ganchix" name="arangodb-spring-boot-parent" rev="1.0.3">
  <artifact name="arangodb-spring-boot-parent" type="pom" />
</dependency>
@Grapes(
@Grab(group='io.github.ganchix', module='arangodb-spring-boot-parent', version='1.0.3')
)
libraryDependencies += "io.github.ganchix" % "arangodb-spring-boot-parent" % "1.0.3"
[io.github.ganchix/arangodb-spring-boot-parent "1.0.3"]

Зависимости

test (1)

Идентификатор библиотеки Тип Версия
org.springframework.boot : spring-boot-starter-test jar 2.0.1.RELEASE

Модули Проекта

  • arangodb-spring-boot-autoconfigure
  • arangodb-spring-boot-starter

Spring boot starter ArangoDB Build Status codecov Maven Central GitHub stars

Spring boot starter for use ArangoDB in a Spring Boot way.

Table of Contents

Overview

This implementation offers a way to use ArangoDB Spring data framework like a spring boot starter project.

Getting started

Add dependency

<dependency>
    <groupId>io.github.ganchix</groupId>
    <artifactId>arangodb-spring-boot-starter</artifactId>
    <version>1.0.1</version>
</dependency>

Code example

Start your ArangoDB database, for example:

docker run -p 8529:8529 -e ARANGO_ROOT_PASSWORD=openSesame arangodb/arangodb:3.3.5

Create your spring boot project and add the dependency, configure in the properties file your database, you can see ArangoProperties to check all options available.

Example:

spring.data.arangodb.password=openSesame
spring.data.arangodb.database-name=test

And you can create your domain classes and repositories following the Spring Data Arangodb instructions

License

Spring boot starter ArangoDB is licensed under the MIT License. See LICENSE for details.

Copyright (c) 2018 Rafael Ríos Moya

Версии библиотеки

Версия
1.0.3
1.0.2
1.0.1-Test
1.0.1
1.0.0