Michael Reiche
Michael Reiche
**Affects:** 2.7 --- spring-data-couchbase would like to support @Transactional support. Couchbase's transaction management aligns with the CallbackPreferringPlatformTransactionManager. There is currently support for CallbackPreferringPlatformManager in TransactionAspectSupport. invokeWithinTransaction() https://github.com/spring-projects/spring-framework/blob/5378572b00d5b9bc6978d117359b059412773288/spring-tx/src/main/java/org/springframework/transaction/interceptor/TransactionAspectSupport.java#L415 https://github.com/spring-projects/spring-framework/issues/13906 I understood...
From rbleuse. Closes #1529. - [x] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc). - [x] There is a ticket in the bug tracker for the project in our [JIRA](https://jira.spring.io/browse/DATACOUCH)....
The link should be https://github.com/spring-projects/spring-data-couchbase/issues
https://couchbase.slack.com/archives/CC6GX1CJJ/p1647340570657629 https://issues.couchbase.com/browse/JCBC-1923 solutions is: the configureEnvironment() method in the configuration class needs to be overridden and enable TLS and specify the trustcertificate. ``` @Override protected void configureEnvironment(final ClusterEnvironment.Builder builder) {...
implement querydsl join The documentation http://querydsl.com/static/querydsl/2.2.0/reference/html/ch02s02.html seems to have a different idea than me about what should be in on(predicate). It seems that the actual 'on' predicate is always implied...
``` package org.springframework.data.couchbase.core.query; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.couchbase.core.CouchbaseTemplate; import org.springframework.data.couchbase.domain.Airport; import org.springframework.data.couchbase.domain.Config; import org.springframework.data.couchbase.util.Capabilities; import org.springframework.data.couchbase.util.ClusterType; import org.springframework.data.couchbase.util.IgnoreWhen; import org.springframework.data.couchbase.util.JavaIntegrationTests; import org.springframework.test.context.junit.jupiter.SpringJUnitConfig; import com.couchbase.client.java.query.QueryOptions; import com.couchbase.client.java.query.QueryScanConsistency; import java.util.List; @IgnoreWhen(missesCapabilities...
[Oliver Drotbohm](https://app.slack.com/team/W014FRV38U8) [1:31 PM](https://couchbase.slack.com/archives/C02GQL6HVC1/p1654893066470429) Heads up: we've just merged a revamped implementation of the entire TypeInformation API now based on Spring's ResolvableType. All previous API is still intact, but we...