Friday, February 2, 2024
Got tired with Rust Borrow Checker ! Try WebAssembly instead :)
Saturday, April 23, 2022
Caching with Spring
@Cachable: Runs before actual method invocation
@CachePut: Runs after the actual method invocation
Unless: works for return value
Condition: works for method parameter
@Cacheable(value = "saveCache", key = "{#a, #b, #c}", unless="#result.result.size() > 0")
@CachePut(value="defaultCache", key="#pk",unless="#result==null")
@Cacheable(value="actors", key="#key", condition="#key == 'sean'")
Tuesday, March 2, 2021
Rest Post Mock Intellij Mockoon
Easy test your endpoints within the Ide : there is a world icon on the rest controller click on it
If you need to mock some requests Mockoon is a very handy tool for it
Tuesday, February 2, 2021
Thursday, January 28, 2021
SpringBoot StringKafkaTemplate Conductor Kafka Topic Producer Consumer
Wanna produce and consume from Kafka topics with SpringBoot ?
Wanna watch your Kafka Topics via Conductor ?
Wanna send some rest request to produce data to send your Kafka topic ?
Don't wanna write code ?
Just checkout and sit back :)