Krzysztof Dębski
Krzysztof Dębski
dev branch currently has `[2.17.1,)`. I think this pull request can be closed.
I am using 2.7, and I read that `spring.factories` is deprecated, and it will be removed. My `spring.factories` contains only one line: `org.springframework.boot.env.EnvironmentPostProcessor=com.myorg.PropertySourceEnvironmentPostProcessor` `com.myorg.PropertySourceEnvironmentPostProcessor` class implements `org.springframework.boot.env.EnvironmentPostProcessor` and it does...
I would name it int128 instead of longlong. That way we can have int256 or int512 in the future. Names like int32 or int64 are C++ standard (https://en.cppreference.com/w/cpp/types/integer).
Springdoc is a good replacement, but it supports Swagger 3 annotations only. Springfox supports both Swagger 2 and 3 annotations. The issue is that when you use OpenAPI Generator (https://github.com/OpenAPITools/openapi-generator)...
I think that the library is thread-safe. It uses `java.util.Random` which is thread-safe. However, documentation of Random class says that when it is used by multiple threads, the performance would...
Upon further investigation, I found out that some parts of the library are not thread safe. For example, `TextProducer` has `limit` variable that can be changed and it is accessed...
I encountered the same issue. JsonSubTypes does not work for CSV. Jackson determines order of properties for the base class and throws "Unrecognized column 'type': known columns:" when trying to...
I also confirm the issue for swagger-codegen-maven-plugin 3.0.19
Also https://docs.liquibase.com/concepts/advanced/preconditions.html says that CONTINUE and MARK_RAN should be supported, but they are not (for databaseChangeLog preConditions )
Is there any solution/workaround for this issue? I just want to use `application/json` instead of `application/hal+json` for all responses with WebFlux + HATEOAS.