Adrien Wattez
Adrien Wattez
Hello, I tried with the latest version of develop (https://github.com/deliveredtechnologies/rulebook/commit/a98cbc8de45da252c5c44c4afbe7fac2b103d1b0). The reflection takes place during each `GET` call on `/greeting`. ``` 2020-04-20 15:15:19.175 INFO 90816 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed...
I do not think that this library is planned to use JSON / YAML files to configure the rules. I also do not know if there is a RoadMap referenced...
In `com.deliveredtechnologies.rulebook.spring.RuleBean` you have `@Scope("prototype")` Scope prototype means that every time you ask spring (getBean or dependency injection) for an instance it will create a new instance and give a...
You are right one Result, we have one `ReentrantReadWriteLock _lock` for all the application threads. But locks take place only during reading and writing (it is not exactly the same...
Vanilla spring boot project with `spring-boot-starter-web`, `spring-boot-starter-security` : [Spring Initializer Characteristics](https://start.spring.io/#!type=maven-project&language=java&platformVersion=2.7.0&packaging=jar&jvmVersion=17&groupId=com.example&artifactId=demo&name=demo&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.demo&dependencies=web,security) with `problem-spring-web-starter`, produces same weird results :( --- Environment : - Spring Boot version: 2.7.0 - problem-spring-web version: 0.27.0...
Why this PR https://github.com/zalando/problem-spring-web/pull/728 is not merged if it fixes the problem ?
Any update about this support ?
Hey, any update about this use case? Will this feature be planned? There are very interesting possibilities of using this functionality https://stackoverflow.com/questions/68782030/build-custom-snakeyaml-constructor-to-deserialize-yaml-file-in-a-modular-way
I plan to do a PR on this subject during October
Quick Fix : You will have `null` value and other informations (offset, partition, topic etc.) if you use `ConsumerRecord record` see https://micronaut-projects.github.io/micronaut-kafka/latest/guide/#kafkaListenerMethods ```java @Topic("awesome-products") public void receive(ConsumerRecord record) { Product...