johannegger

Results 4 issues of johannegger

### Description Connexion does not respect the 'explode' feature for query parameters. As an example the query object from [this stackflow answer](https://stackoverflow.com/questions/38187187/use-object-type-query-param-in-swagger-documentation/38188832#51277233) can be used. ### Expected behaviour Connexion should...

bug

**Version**: (e.g. `4.6.0.1`) **Module**: (e.g. `quill-jdbc`) **Database**: (e.g. `postgresql`) ### Expected behavior I have a table with a column of type nullable uuid (i map postgres uuid -> java.util.UUID) inserting...

the following code does not compile: ``` import rapture.json.{Json, _} case class Foo(value:Map[Int,Int]) case class Bar(foos:Seq[Foo]) class Test(implicit ast:JsonAst) { val myBar = Bar(List(Foo(Map(1->1)))) //implicit val ser = implicitly[Serializer[Foo,Json]] Json(myBar)...

#json
#xml

this code shows the problem: ``` import rapture.core.modes.returnTry._ case class Foo(value:Option[Int]) val ser = Json.format(Json(true)) //String = "true" Json.parse(ser).flatMap(_.as[Foo]) //result is: Success(Bar(None)) ``` The parser gets a string and decides...

bug
#json