spring-session-appengine

Spring Session Integration for App Engine

Лицензия

Лицензия

Категории

Категории

IDE Инструменты разработки
Группа

Группа

org.hidetake
Идентификатор

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

spring-session-appengine
Последняя версия

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

0.9.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

spring-session-appengine
Spring Session Integration for App Engine
Ссылка на сайт

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

https://github.com/int128/spring-session-appengine.git
Система контроля версий

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

https://github.com/int128/spring-session-appengine.git

Скачать spring-session-appengine

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

<!-- https://jarcasting.com/artifacts/org.hidetake/spring-session-appengine/ -->
<dependency>
    <groupId>org.hidetake</groupId>
    <artifactId>spring-session-appengine</artifactId>
    <version>0.9.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.hidetake/spring-session-appengine/
implementation 'org.hidetake:spring-session-appengine:0.9.0'
// https://jarcasting.com/artifacts/org.hidetake/spring-session-appengine/
implementation ("org.hidetake:spring-session-appengine:0.9.0")
'org.hidetake:spring-session-appengine:jar:0.9.0'
<dependency org="org.hidetake" name="spring-session-appengine" rev="0.9.0">
  <artifact name="spring-session-appengine" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.hidetake', module='spring-session-appengine', version='0.9.0')
)
libraryDependencies += "org.hidetake" % "spring-session-appengine" % "0.9.0"
[org.hidetake/spring-session-appengine "0.9.0"]

Зависимости

compile (1)

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

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

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

Spring Session Integration for App Engine CircleCI Gradle Status

A Spring Session integration library for App Engine Java Standard Environment.

Getting Started

See example app for more details.

// build.gradle
compile 'org.hidetake:spring-session-appengine:0.9.0'
<!-- pom.xml -->
<dependency>
    <groupId>org.hidetake</groupId>
    <artifactId>spring-session-appengine</artifactId>
    <version>0.9.0</version>
</dependency>

Caveat

Spring Session does not work properly on some case. Unfortunately there is no workaround at this time.

public class FixtureController {
    // This works perfectly.
    @ResponseBody
    String index() {
        return "0";
    }

    // This does not work because "Set-Cookie" header did not send.
    @ResponseBody
    int index() {
        return 0;
    }
}

Contributions

This is an open source software licensed under the Apache License Version 2.0. Feel free to open issues or pull requests.

Release

CircleCI builds the plugin continuously. It also publishes an artifact if a tag is pushed and following variables are set.

Environment Variable Value
$BINTRAY_USER Bintray user name
$BINTRAY_KEY Bintray key

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

Версия
0.9.0