Misk Exemplar Project

Example project using Misk framework

Лицензия

Лицензия

Категории

Категории

Square Прикладные библиотеки Financial
Группа

Группа

com.squareup.misk
Идентификатор

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

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

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

0.3.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

Misk Exemplar Project
Example project using Misk framework
Ссылка на сайт

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

https://github.com/square/misk/
Система контроля версий

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

https://github.com/square/misk/

Скачать exemplar

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

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

Зависимости

compile (5)

Идентификатор библиотеки Тип Версия
org.jetbrains.kotlin : kotlin-stdlib-jdk8 jar 1.2.10
com.google.guava : guava jar 23.6-jre
com.google.inject : guice jar 4.1.0
ch.qos.logback : logback-classic jar 1.2.3
com.squareup.misk : misk jar 0.3.0

test (1)

Идентификатор библиотеки Тип Версия
com.squareup.misk : misk-testing jar 0.3.0

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

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

See the project website for documentation and APIs.

Misk is a new open source application container from Cash App.

Misk is not ready for use. The API is not stable.

Releases

Our change log has release history. API is subject to change.

implementation("com.squareup.misk:misk:0.16.0")

Snapshot builds are available.

Modules

misk-actions

The core annotations and interfaces necessary to define actions that can be hosted in Misk. This package has no dependency on the enclosing container (Misk!) and so your actions can be used in other environments without any heavy dependencies.

Actions should extend WebAction, be annotated with a HTTP method like @Post, accept a request object and return a response object. Throw an exception like BadRequestException to fail the request without much boilerplate.

misk-aws

Integrate with Amazon Web Services, and includes packages to integrate with S3 and SQS.

misk-aws-dynamodb

Integrate with AWS DynamoDb using AWS SDK for Java 1.x. It should be safe to install side-by-side with misk-aws2-dynamodb if you need to use features in both.

misk-aws-dynamodb-testing

Integrate with this package to write tests for code that interacts with DynamoDb. Exposes APIs via AWS SDK for Java 1.x. Use alongside with misk-aws-dynamodb.

Installing InProcessDynamoDbModule runs a DynamoDb Local instance in memory for your tests to run against. This module is recommended over DockerDynamoDbModule because there is less overhead in test execution performance.

Installing DockerDynamoDbModule runs a DynamoDB Local instance in Docker for your tests to execute against.

misk-aws2-dynamodb

Integrate with AWS DynamoDb using AWS SDK for Java 2.x. It should be safe to install side-by-side with misk-aws-dynamodb if you need to use features in both.

Please read the AWS SDK for Java 2.x Migration Guide for more details.

misk-aws2-dynamodb-testing

Integrate with this package to write tests for code that interacts with DynamoDb. Exposes APIs via AWS SDK for Java 2.x. Use alongside with misk-aws2-dynamodb.

Installing InProcessDynamoDbModule runs a DynamoDb Local instance in memory for your tests to run against. This module is recommended over DockerDynamoDbModule because there is less overhead in test execution performance.

Installing DockerDynamoDbModule runs a DynamoDB Local instance in Docker for your tests to execute against.

misk-service

Bind Guava services with inter-service dependencies.

Any service can depend on any other service. ServiceManager won't start a service until the services it depends on are running.

misk-inject

Integrates Guice with Kotlin.

Extending KAbstractModule instead of Guice's AbstractModule lets you use KClass instead of java.lang.Class and other conveniences.

misk-feature

Runtime feature flags. misk-launchdarkly is the reference implementation.

misk-jobqueue

A job queue with a high quality fake. AwsSqsJobQueueModule from misk-aws is the reference implementation.

misk-events

An event publisher + consumer. There is no open source reference implementation at this time.

Looking for Misk-Web?

Misk-Web powers the Misk Admin Dashboard with modular Typescript + React powered tabs.

Check out Misk-Web!

com.squareup.misk

Square

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

Версия
0.3.0
0.2.5
0.2.4
0.2.3
0.2.2
0.1.0