Dmitrii Balakhonskii
Dmitrii Balakhonskii
First of all, thanks for the wonderful library! I'm trying to study FSM applications and doing some exercises. Suddenly I bumped into an issue: This works: ``` (view (a/interpose-$ 42...
Currently, `:up` and `:down` migrations are vectors of strings. Each string is then wrapped in a vector and given to `jdbc/execute!` However, `jdbc/execute!` expects a vector in the format: ["SOME...
``` clj (defmacro defquery-hystrix-commands [filename] `(do (defqueries ~filename) (generate-hystrix-commands))) ``` ``` clj (defquery-hystrix-commands "db/queries.sql") ```
As we are driving Friboo to be generally useful, we should not include components like MgmtHTTP, Metrics, AuditLog or OAuth2TokenRefresher in the default package and of course not in the...
In order to have generated documentation, set up [Marginalia](https://github.com/gdeer81/marginalia/) and the corresponding [Leiningen plugin](http://github.com/gdeer81/lein-marginalia).
After #91. During each normal Travis build (when `TRAVIS_PULL_REQUEST` is **false**), generate project documentation and publish it with Github Pages under the corresponding branch subfolder.
``` $ lein new friboo my-new-project -- apis/my-new-project.yaml ``` This call should copy the file into the new project and generate corresponding controller functions: ``` (defn get-hello [controller params request]...
Sometimes it's necessary to generate a resource URL from a handler function, for example, to provide "location" header. Concatenating strings is not an ideal solution. We can possibly support it...
Use https://github.com/malcolmsparks/clj-logging-config instead of providing `resources/log4j.xml`. This should allow to configure logging in runtime.
BoneCP is quite old. Should take a look modern implementations: * https://github.com/brettwooldridge/HikariCP