Reading Time: < 1 minute This is an example project of how to use Spring WebSocket integrated with Message Broker Active MQ to deal with the scenario where you scale out your Microservice and keep the WebSocket communication working between different Clients connected to your backend service. Github: https://github.com/educostadev/spring-websocket-message-broker
Read moreTag: java
Automatic Vertical Scaling of the Java Heap
Posted on — Leave a commentReading Time: < 1 minute For years java was synonyms of greedy applications, the kind that opens the refrigerator at night and eat all the available resources until the crash. The main reason for that behavior was the lack of an efficient way to give back the operational system the memory allocated in the java heap and not used anymore. […]
Read moreLearn how to package your java application into a docker image
Posted on — Leave a commentReading Time: 2 minutes Check this very straight tutorial and learn how you can package your java application into a docker image and run it as docker container. Now that all cloud providers make the Kubernetes available and standardize docker as the default container, it´s very useful to package your application into a small image and delivery it not […]
Read more