Skip to content

The Slick Akka Http is a very simple json rest api showing one way of using akka http with slick 3 library for database access.

License

Notifications You must be signed in to change notification settings

sunsence/slick-akka-http

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

slick-akka-http

The Slick Akka Http is a very simple json rest api showing one way of using akka http with slick 3 library for database access.

It supports the following features:

  • Generic Data Access layer, create a DAL with crud for an entity with just one line
  • Models as case classes and slick models, independent from database driver and profile
  • Multiple database types configured in properties file (h2 and postgresql for instance)
  • Cake pattern for DI
  • Spray-json to parse json
  • Tests for DAL
  • tests for routes

Utils:

  • Typesafe config for property management
  • Typesafe Scala Logging (LazyLogging)
  • Swagger for api documentation

The project was thought to be used as an activator template.

#Running

The database pre-configured is an h2, so you just have to:

    $ sbt run

#Testing

To run all tests (routes and persistence tests):

    $ sbt test

#Using

curl --request POST localhost:8080/supplier -H "Content-type: application/json" --data "{\"name\" : \"sup1\",\"desc\" : \"low prices\"}"

curl localhost:8080/supplier/1

#Credits

To make this template, I just mixed the tutorials and templates, so credits for akka and slick guys, and swagger-akka-http.

About

The Slick Akka Http is a very simple json rest api showing one way of using akka http with slick 3 library for database access.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 93.6%
  • CSS 5.1%
  • Other 1.3%