gyokuro
gyokuro copied to clipboard
Web framework written in Ceylon 🐘
Make it clear that those are supported by the framework! ```ceylon route("hello") shared String func5(String? optional s1, String s2 = "defaulted") { ... } ```
Hi. While writing sort of HTTP/FTP proxy I noticed gyokuro has no wildcard route support (as i.e. /ftp/*). I tried to abuse filters for that, only to notice those are...
The current behavior is to write something like > 400 — Bad request It would be nice to customize that output, either by allowing custom error handlers, or custom error...
If one defines a partial path on the controller, the default route ends with a trailing slash: ``` Ceylon route("/users") controller class UserController { route("") //and route("/") both map to...
Add support according to the specification: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html Check out the JAX-RS way of doing it: https://docs.jboss.org/resteasy/docs/1.0.2.GA/userguide/html/JAX-RS_Content_Negotiation.html Guava has a MediaType class that helps a little bit with matching accept headers...
Generate REST API documentation from the code, something similar to Swagger JAX-RS extension, but without all their annotations (they have just too many), which is possible in Ceylon, thanks to...