Mikhail Polivakha
Mikhail Polivakha
I think it will generally a good idea to make `@ApiResponse` annotation as repeatable. We are using swagger a lot and each time wrapping it within `@ApiResponses` is not very...
I have noticed that `SqlIdentifier` has redundant `SqlIdentifier#getReference(IdentifierProcessing)` method. The thing is, in accordance to the documentation, this method should: > Return the reference name after applying {@link IdentifierProcessing} rules....
TL;DR: We should not always quote table/schema name, it hardly will be the right thing to do. I have created [github repository](https://github.com/Mikhail2048/spring-data-jdbc-bug-reproduction) in order to demonstrate the problem we have...
The following [SO question](https://stackoverflow.com/questions/52960921/spring-boot-configurationproperties-change-property-key) illustrates the problem well. Long story short, sometimes I want to have a property in my config file, which name is different from the object field....
Implmented #3353 feature
Hello @schauder ! I have finally came up with the draft solution of #1136 issue. All test cases are running fine, and now it is far more clear, at least...
I think we have a design problem in the framework First, there is `DataAccessStrategy`, which acts like an orchestrator in general - it is responsible to delegate the SQL creation,...
This is the PR to solve #764 issue. The key takeaways in the PR: there is a new class, called `CassandraSchemaValidator`, that is validating Cassandra schema against existing entities in...
Hello @mp911de @schauder ! I have implemented #921 feature. I have assumed the following behavoir: 1. There is a possibility to specify a keyspace for an entity in the `@Table`...