Michael Reiche
Michael Reiche
I haven't heard back, so closing. If you would like to provide more information, you may reopen.
Spring Data needs the fully-qualified name of a class implementation to construct the object. Interfaces (which is specified in the Repository definition in your case) do not have constructors. If...
Please repen if you need more information.
The couchbase transaction does get processed and TransactionalApplicationListenerMethodAdapter.onApplicationEvent() does get triggered with the event having the DataCreated object as the payload. But it falls through to the 'else'. ``` @Override...
Yes. This worked in 2.7.13? With which version of spring-data-couchbase? I don't think that spring-data-couchbase transactions uses TransactionSynchronizationManager, so this behavior doesn't surprise me. The check for being in a...
Can you provide the repo with your project? Or a jar? > But TransacionalEventListener doesnt consume it. There is no listener required for transactions. I don't know what TransactionalEventListener is....
Many of the couchbase artifacts are @Beans. Spring framework no longer allows null @Beans. https://github.com/spring-projects/spring-boot/issues/12563 All these beans would need to change from SomeObject to Supplier or Optional
> i want to create index for collection, what is the best way for to do this ? The best way? Do this manually outside of spring data. This @QueryIndexed...
I did not get this into the May release. Sorry.
#1620 is related/duplicate