Important Disclaimer: Disabling SSL verification is a significant security risk, making your application vulnerable to man-in-the-middle attacks. Therefore, this approach should only be used in non-production environments for testing and debugging purposes. and never in production. When developing or debugging applications that consume HTTPS services, it’s common to encounter SSL […]
Tag: spring
Spring-Actuator without Spring Boot
How to simultaneously fetch multiple bags with hibernate
JPA specification allows up to two simultaneous eager fetches. But sometimes when we really need to this – we are stuck. One way to achieve this is to use hibernate extensions. We could do something like this: [cc lang=”java” highlight=”2″] @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy = “keys”) @Fetch(value […]
