Mike
Mike
it's not working in google chrome v.53. Here is my example: ``` html I have a bike ``` ``` javascript (function () { 'use strict'; angular.module('myApp', ['ngclipboard']); angular.module('myApp').controller('myController', function($scope){ $scope.onSuccess...
dependencies ``` implementation 'net.lecousin.reactive-data-relational:postgres:0.10.2' implementation 'org.springframework.boot:spring-data-commons:2.7.0' ``` stacktrace ``` java.lang.NoClassDefFoundError: org/springframework/data/mapping/PreferredConstructor$Parameter at net.lecousin.reactive.data.relational.mapping.LcEntityReader.getOrCreateInstance(LcEntityReader.java:233) ~[core-0.10.2.jar:na] at net.lecousin.reactive.data.relational.mapping.LcEntityReader.getOrCreateInstance(LcEntityReader.java:220) ~[core-0.10.2.jar:na] at net.lecousin.reactive.data.relational.mapping.LcEntityReader.read(LcEntityReader.java:110) ~[core-0.10.2.jar:na] at net.lecousin.reactive.data.relational.mapping.LcEntityReader.read(LcEntityReader.java:103) ~[core-0.10.2.jar:na] at net.lecousin.reactive.data.relational.mapping.LcReactiveDataAccessStrategy.lambda$getRowMapper$0(LcReactiveDataAccessStrategy.java:42) ~[core-0.10.2.jar:na] at io.r2dbc.postgresql.PostgresqlResult.lambda$map$2(PostgresqlResult.java:123) ~[r2dbc-postgresql-0.9.1.RELEASE.jar:0.9.1.RELEASE] at...
with libraries ```groovy testImplementation 'io.zonky.test:embedded-database-spring-test:2.5.1' testImplementation 'io.zonky.test:embedded-postgres:2.0.7' testImplementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:15.7.0') ``` and test classes ```java @DataJpaTest @AutoConfigureEmbeddedDatabase(type = POSTGRES, provider = ZONKY) public abstract class EmbeddedPostgresIntegrationTest { @Autowired protected TestSampleRepository repo;...