spring-boot-gae

Spring Boot Google App Engine Plugin

Лицензия

Лицензия

Категории

Категории

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

Группа

com.github.n15g
Идентификатор

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

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

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

1.1.0-beta-3
Дата

Дата

Тип

Тип

jar
Описание

Описание

spring-boot-gae
Spring Boot Google App Engine Plugin
Ссылка на сайт

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

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

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

https://github.com/n15g/spring-boot-gae.git

Скачать spring-boot-gae

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

<!-- https://jarcasting.com/artifacts/com.github.n15g/spring-boot-gae/ -->
<dependency>
    <groupId>com.github.n15g</groupId>
    <artifactId>spring-boot-gae</artifactId>
    <version>1.1.0-beta-3</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.n15g/spring-boot-gae/
implementation 'com.github.n15g:spring-boot-gae:1.1.0-beta-3'
// https://jarcasting.com/artifacts/com.github.n15g/spring-boot-gae/
implementation ("com.github.n15g:spring-boot-gae:1.1.0-beta-3")
'com.github.n15g:spring-boot-gae:jar:1.1.0-beta-3'
<dependency org="com.github.n15g" name="spring-boot-gae" rev="1.1.0-beta-3">
  <artifact name="spring-boot-gae" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.n15g', module='spring-boot-gae', version='1.1.0-beta-3')
)
libraryDependencies += "com.github.n15g" % "spring-boot-gae" % "1.1.0-beta-3"
[com.github.n15g/spring-boot-gae "1.1.0-beta-3"]

Зависимости

compile (10)

Идентификатор библиотеки Тип Версия
com.google.code.findbugs : jsr305 jar 3.0.2
com.google.appengine : appengine-api-1.0-sdk jar 1.9.54
com.googlecode.objectify : objectify jar 5.1.21
org.apache.commons : commons-lang3 jar 3.6
org.apache.commons : commons-text jar 1.1
com.google.guava : guava jar 23.0
javax.servlet : javax.servlet-api jar 3.1.0
org.springframework.boot : spring-boot-starter jar 1.5.6.RELEASE
org.springframework.data : spring-data-commons jar 1.13.6.RELEASE
org.springframework : spring-tx jar 4.3.11.RELEASE

test (4)

Идентификатор библиотеки Тип Версия
com.openpojo : openpojo jar 0.8.6
com.google.appengine : appengine-testing jar 1.9.54
com.google.appengine : appengine-api-stubs jar 1.9.54
org.springframework.boot : spring-boot-starter-test jar 1.5.6.RELEASE

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

Данный проект не имеет модулей.

Spring Boot Google App Engine

Spring Boot support for Google App Engine Datastore via Objectify and the full-text search API.

Note: This project has Moooooooo 🐄 ved to https://github.com/3wks/spring-boot-gae

Latest Stable

Maven

<dependency>
  <groupId>com.github.n15g</groupId>
  <artifactId>spring-boot-gae</artifactId>
  <version>1.0.0</version>
</dependency>

Gradle

compile 'com.github.n15g:spring-boot-gae:1.0.0'

Latest Unstable

Maven

<dependency>
  <groupId>com.github.n15g</groupId>
  <artifactId>spring-boot-gae</artifactId>
  <version>1.1.0-beta-1</version>
</dependency>

Gradle

compile 'com.github.n15g:spring-boot-gae:1.1.0-beta-1'

Trello

https://trello.com/b/lgwbSi6o/spring-boot-gae

Requirements

  • Java 8+
  • Appengine Standard Java 8+
  • Gradle 4+ (if you don't want to use the wrapper)

This library has been designed to work with the new Java8 Appengine Standard Environment. It will not work when deployed to the Java 7 standard environment.

Getting Started

SearchRepository

Repositories extendingSearchRepository will automatically index saved entities in the SearchService using the entity's Key#toWebSafeKey() as the @SearchId.

Google Search API Limitations

There are some limitations of the the google Search API that impact what can and cannot be indexed or queried by the SearchService:

  • Collections are not supported on NUMBER or DATE fields.
  • Date/Time fields are stored and queried as DATE only, the time component is truncated.
  • Substring matching is not supported.
  • GT, GTE, LT, LTE are not supported for STRING/HTML queries.

Not all of the limitations of the Search API are enforced by the framework, if in doubt see the Search API documentation for specifics.

Misc

Release to Central

gradle -Prelease uploadArchives closeAndReleaseRepository

Installing the Library

To install the library to your local maven repository, run the following:

./gradlew install

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

Версия
1.1.0-beta-3
1.1.0-beta-2
1.1.0-beta-1
1.0.0