Sam Kruglov

Results 43 comments of Sam Kruglov

@smcvb thanks for the reply! This is not Alard's repository, although the idea is the same. Axon Framework throws NPE during bean initialization, why is it not an issue? The...

@smcvb sorry, my mistake. You also need to go to the `BikeService` and comment out line 17: `waitFor: EventGateway,`

@NiasSt90 it's not specific to kotlin. `waitFor` is just a name of the field of type `EventGateway`. The workaround is to "wait for" the gateway to construct, i.e. inject the...

This fits here best https://github.com/AxonFramework/extension-tracing/pull/48#issuecomment-619126682

@toniocus hey, why don’t you just convert everything to synchronous programming? You could use something like Feign to do your calls or if you have to use webclient you can...

@toniocus yeah until this issue is resolved you won’t get much benefits in moving to reactive. So you can either migrate your code to reactive or stay synchronous. If you...

Here is my workaround: Inject basepath: `@Value("${spring.data.rest.base-path}") String dataRestBasePath` through constructor end inside the constructor make sure it ends with `'/'` and does not start with `'/'`: if(dataRestBasePath.charAt(dataRestBasePath.length() - 1)...

When we're using natural auto-generates SDR collection resources, it always returns the empty array because it has meta information. All of the custom ones return nothing when there is an...

It builds if you add this repository ``` spring.releases https://repo.spring.io/plugins-release/ false ``` But when you open swagger UI, then nothing has changed

Maybe you can just reuse this project? @dilipkrish So, you add this doclet instead ``` maven-javadoc-plugin true generate-javadoc-json compile javadoc-no-fork capital.scalable.restdocs.jsondoclet.ExtractDocumentationAsJsonDoclet capital.scalable spring-auto-restdocs-json-doclet 2.0.5 generated-javadoc-json ${project.build.directory} false package ``` Then...