Tag: JAVA
-
Rust’s Rising Tide: Evaluating Enterprise Adoption Beyond the Hype
The Weekly Radar The Context Rust’s growth from a niche systems language to a mainstream contender is evident in the latest StackOverflow survey, which reports an 11.5% usage rate. Enterprises eye Rust for its memory‐safety guarantees and zero‐cost abstractions, seeking to reduce runtime errors in critical backend and embedded systems. At the same time, Rust’s…
-
Adapting to Spring Boot 4 and Framework 7.0—A New Enterprise Baseline
THE WEEKLY RADAR The Context In mid-November 2025, the Spring team delivered Framework 7.0 and Boot 4.0 as the next generation of its flagship platform. These releases pivot the ecosystem to require Java 25, integrate GraalVM native-image improvements, and overhaul core modules for reactive and cloud-native patterns. Over 30% of Fortune 500 back-end Java systems…
-
JAVA Unit Test: Why they can “save” our life?
The Unit Test cases raise the quality of your final product and then you will raise the quality of your reputation
-
Use JAVA SQL Parameters and improve your application security
Use parameters in a JAVA SQL Prepared Statement is a good practice for performance reasons but also is good way to improve the security of your application.
-
The magic of Interfaces: use JMS to create Queue/Topic producers and consumers
Remove particular implementations and use interfaces (for JMS or other features) improve the independency and flexibility of your application: with a few changes you can change providers, APIs or products without modify your business/main logic
-
JAVA Unit Test for Spring Boot with Mockito and EasyMock
Here they are some ideas about testing using the different tools given by Spring Boot Test dependency. For me and my team they are so useful when we write and run the Unit Test for medium or high complexity classes.
-
Spring Boot Application with Jersey Rest End Points
Yesterday I received a requirement to create a JAVA Spring Boot Application with Jersey Rest end-points. Researching on Internet about how to overwrite the SB configuration I founded that it solves with only one dependency! So, here is a little example about how to configure and test (with Mockito and EasyMock) a Jersey end-point in…