Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swagger-api/swagger-scala-module
Swagger support for scala
https://github.com/swagger-api/swagger-scala-module
openapi-specification scala swagger
Last synced: 3 months ago
JSON representation
Swagger support for scala
- Host: GitHub
- URL: https://github.com/swagger-api/swagger-scala-module
- Owner: swagger-api
- Archived: true
- Created: 2015-03-13T14:58:25.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-09-14T15:32:52.000Z (over 2 years ago)
- Last Synced: 2024-09-26T10:40:37.470Z (3 months ago)
- Topics: openapi-specification, scala, swagger
- Language: Scala
- Size: 80.1 KB
- Stars: 103
- Watchers: 25
- Forks: 54
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Archived
This project is no longer supported
# Swagger Scala Module
[![Build Status](https://travis-ci.org/swagger-api/swagger-scala-module.svg?branch=develop)](https://travis-ci.org/swagger-api/swagger-scala-module)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.swagger/swagger-scala-module_2.11/badge.svg?style=plastic)](https://maven-badges.herokuapp.com/maven-central/io.swagger/swagger-scala-module_2.11)The goal of Swagger™ is to define a standard, language-agnostic interface to REST APIs which allows both humans and computers to discover and understand the capabilities of the service without access to source code, documentation, or through network traffic inspection. When properly defined via Swagger, a consumer can understand and interact with the remote service with a minimal amount of implementation logic. Similar to what interfaces have done for lower-level programming, Swagger removes the guesswork in calling the service.
Swagger-scala-module is a pure scala module for use with the swagger framework.
Check out [Swagger-Spec](https://github.com/swagger-api/swagger-spec) for additional information about the Swagger project, including additional libraries with support for SpringMVC, other languages and more.
## See the Wiki!
The [github wiki](https://github.com/swagger-api/swagger-core/wiki) contains documentation, samples, etc. Start there.## Compatibility
This project is compatible with [swagger-core](https://github.com/swagger-api/swagger-core) 1.5.x or greater.## Usage
To enable the swagger-scala-module, include the appropriate version in your project:```
"io.swagger" %% "swagger-scala-module" % "1.0.7-SNAPSHOT"
```Which will include the proper cross-publish version of swagger-scala-module.
## How does it work?
Including the library in your project allows the swagger extension module to discover this module, bringing in the appropriate jackson library in the process. You can then use scala classes and objects in your swagger project.## Treatment of `Option` and `required`
All properties, besides those wrapped in `Option` or explicitly set via annotations `@ApiModelProperty(required = false)`, default to `required = true` in the generated swagger model. See [#7](https://github.com/swagger-api/swagger-scala-module/issues/7)## How to hide model properties
`@ApiModelProperty(hidden = true)` does not work because Scala generates a field and a getter for public properties. The annotation will hide the getter, but the field of the same name will still be visible.To hide the property, instruct the Scala compiler to annotate both the field and the getter:
```scala
import io.swagger.annotations.{ApiModel, ApiModelProperty}
import scala.annotation.meta.{field,getter}@ApiModel
case class Foo(
@ApiModelProperty(value = "This will not be hidden!", hidden = true)
stillVisible: Int,@(ApiModelProperty @field @getter)(value = "A hidden property", hidden = true)
actuallyHidden: String
)
```## Support
The following methods are available to obtain support for Swagger:- [The Swagger Google Group](https://groups.google.com/forum/#!forum/swagger-swaggersocket) - This would normally be your first stop to get support for Swagger. Here you can find previously asked question, and ask new ones. When asking a question, please provide as much information as you can regarding the environment you use (development language, library, versions.
- The [Issues tab](https://github.com/swagger-api/swagger-scala-module/issues?state=open) - Please open feature requests and bugs here. If you're not sure you encountered a bug, or if it's a general usage question, please use the Google Group mentioned above.
- IRC! you can find us on [freenode](http://webchat.freenode.net/?channels=swagger) in the channel #Swagger. You can talk with us directly there.## Get started with Swagger!
See the guide on [getting started with swagger](http://swagger.io) to get started with adding swagger to your API.### To build from source
```
sbt publishLocal
```## Security contact
Please disclose any security-related issues or vulnerabilities by emailing [[email protected]](mailto:[email protected]), instead of using the public issue tracker.
License
-------Copyright 2016 SmartBear Software, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.---