ah1508
ah1508
If the `@Query` is native, the results can only be projected with an interface. Unlike jpa queries, there is not room for `select new MyProjection(... `. where `MyProjection` would be...
Dapper could offer several `AddListener` methods: before query execution, after query execution, after exception. ```csharp AddBeforeQueryExectutionListener(Action action, bool failOnError = false); AddAfterQueryExectutionListener(Action action, bool failOnError = false); AddAfterQueryExceptionListener(Action action); ```...
using http:// instead of lb:// for the `uri` property of routes definition only works if a `RestClient.Builder` is declared as bean: ```java @LoadBalanced @Bean RestClient.Builder restClientBuilder() { return RestClient.builder(); }...
Most of SPA which use html5 pushstate need a url rewrite when user directly access to an url which is not a file but a route (ex : refresh on...
**I'm submitting a feature request** * **Library Version:** aurelia-path 1.1.5 **Please tell us about your environment:** * **Operating System:** Ubuntu * **Node Version:** 13.0.1 * **NPM Version:** 6.12.0 * **JSPM...
Spring Data REST can only use interface based projection. Modern Java uses records a lot and Spring Data support them (except native query with spring data jpa), how about adding...