Skip to content

Tag: spring-boot

Java interceptor not getting called

I have a Spring boot application and I am implementing and interceptor in order to log some data. The problem is that is not getting called, I have tried: And then I’ve applied to methods or classes and in both of them doesn’t work: Or Does someone knows what I am doing wrong? Thanks Answer If you…

how to zipping multiple files and encode to base64?

I have made a few lines of code and worked for a while, the program I created is like this. When I compress the .zip format, an example.zip file will be formed in the directory. The next step the program runs the command to look for the .zip filename in the directory. If found it will be converted into base64

Avro – java.io.IOException: Not a data file

I am using https://github.com/allegro/json-avro-converter to convert my json message into an avro file. After calling the convertToAvro method I get a byte array: byte[] byteArrayJson. Then I am using the commons library from Apache: The file is created. When I try to reconvert it to json, using: I have creat…