alxxyz

Results 13 comments of alxxyz

https://github.com/FasterXML/jackson-annotations/issues/202

@cowtowncoder can you please help to understand the flow to add this functionality? 1. to create PR to change the `@JsonAnySetter` annotation 2. to create PR in https://github.com/FasterXML/jackson-databind to test...

@tomazfernandes can you please share your implementation?

So, currently i created a custom class ``` public class CustomMSSQLServerContainer extends MSSQLServerContainer { private String databaseName; @Override public String getDatabaseName() { return databaseName; } @Override public SELF withDatabaseName(String databaseName)...

It will be great to have a detailed list, as we are now deciding which database to use. I've found this list https://www.arangodb.com/features-december-2018/ , but it is from 2018, and...

Does it support replication?

@michael-simons we also have some use cases where `@QueryResult` fits better, it will be great if there will be something similar

Thanks. ``` Collection labels = neo4jClient.query("CALL db.indexes() YIELD name RETURN name") .fetchAs(String.class) .all(); labels.forEach(System.out::println); ```

>I know this is really not standard, so I don't expect this to be fixed any time soon, but I feel like it would be more natural to the users...

I expect it to work also with CrudRepository` as it is part of Spring Data, and to be able just to provide the query, and not to map the internal...