π Using jEnv for Setting the JAVA_HOME Path
https://springframework.guru/using-jenv-for-setting-the-java_home-path/
β‘οΈ @SpringFrameworkZone
https://springframework.guru/using-jenv-for-setting-the-java_home-path/
β‘οΈ @SpringFrameworkZone
Spring Framework Guru
Using jEnv for Setting the JAVA_HOME Path
jEnv is a command line to that for Linux and OS X that makes setting the JAVA_HOME environment variable simple. Windows users can use jEnv from a Linux subsystem. Installation To install jEnv on Linuxβ¦
Spring Boot Framework pinned Β«π Java Weekly, Issue 362 https://www.baeldung.com/java-weekly-362 β‘οΈ @SpringFrameworkZoneΒ»
π Architectural Pattern β Timeout Pattern For Resilient MicroService
https://www.vinsguru.com/resilient-microservice-design-timeout-pattern-2/
β‘οΈ @SpringFrameworkZone
https://www.vinsguru.com/resilient-microservice-design-timeout-pattern-2/
β‘οΈ @SpringFrameworkZone
Vinsguru
Timeout Pattern - Microservice Design Patterns | Vinsguru
This tutorial explains Timeout Pattern which is one of the Microservice Design Patterns for designing highly resilient Microservices.
π Spring Boot Web Application β Part 3 β Spring Data JPA
https://springframework.guru/spring-boot-web-application-part-3-spring-data-jpa/
β‘οΈ @SpringFrameworkZone
https://springframework.guru/spring-boot-web-application-part-3-spring-data-jpa/
β‘οΈ @SpringFrameworkZone
Spring Framework Guru
Spring Boot Web Application β Part 3 β Spring Data JPA
In the first part of this tutorial series on creating a web application using Spring Boot, I showed how to use Spring Initializr to create the Maven project we're using in this example. In the secondβ¦
π Redis Lua Script With Spring Boot
https://www.vinsguru.com/redis-lua-script-with-spring-boot/
β‘οΈ @SpringFrameworkZone
https://www.vinsguru.com/redis-lua-script-with-spring-boot/
β‘οΈ @SpringFrameworkZone
Vinsguru
Redis Lua Script With Spring Boot | Vinsguru
Learn Redis Lua Script with Spring Boot to execute a set of operations as a single transaction with constraints when you do Redis transactions.
π Custom AccessDecisionVoters in Spring Security
https://www.baeldung.com/spring-security-custom-voter
β‘οΈ @SpringFrameworkZone
https://www.baeldung.com/spring-security-custom-voter
β‘οΈ @SpringFrameworkZone
Baeldung on Kotlin
Custom Spring Security with AccessDecisionVoters | Baeldung
A quick and practical guide to customizing Spring Security with AccessDecisionVoters
π @Component vs @Repository and @Service in Spring
https://www.baeldung.com/spring-component-repository-service
β‘οΈ @SpringFrameworkZone
https://www.baeldung.com/spring-component-repository-service
β‘οΈ @SpringFrameworkZone
Baeldung on Kotlin
@Component vs @Repository and @Service in Spring | Baeldung
Learn about the differences between the @Component, @Repository and @Service annotations and when to use them.
π Distributed Cache with Hazelcast and Spring
https://reflectoring.io/spring-boot-hazelcast/
β‘οΈ @SpringFrameworkZone
https://reflectoring.io/spring-boot-hazelcast/
β‘οΈ @SpringFrameworkZone
π Reactor β How To Consume / Clean Up Resources With Flux.using
https://www.vinsguru.com/reactive-programming-how-to-consume-clean-up-resources-with-flux-using/
β‘οΈ @SpringFrameworkZone
https://www.vinsguru.com/reactive-programming-how-to-consume-clean-up-resources-with-flux-using/
β‘οΈ @SpringFrameworkZone
Vinsguru
Reactor Flux File Reading | Vinsguru
Learn how we could access a file, read the content stream and close the file etc with Reactor Flux File Read example to consume and clean up resources.
π Jackson Dependency Issue in Spring Boot with Maven Build
https://springframework.guru/jackson-dependency-issue-spring-boot-maven/
β‘οΈ @SpringFrameworkZone
https://springframework.guru/jackson-dependency-issue-spring-boot-maven/
β‘οΈ @SpringFrameworkZone
Spring Framework Guru
Jackson Dependency Issue in Spring Boot with Maven Build
Recently while working with Jackson within a Spring Boot project, I encountered an issue I'd like to share with you. Jackson is currently the leading option for parsing JSON in Java. The Jackson library is composedβ¦
π Form Validation with AngularJS and Spring MVC
https://www.baeldung.com/validation-angularjs-spring-mvc
β‘οΈ @SpringFrameworkZone
https://www.baeldung.com/validation-angularjs-spring-mvc
β‘οΈ @SpringFrameworkZone
Baeldung on Kotlin
Form Validation with AngularJS and Spring MVC | Baeldung
A quick, practical guide on how to validate form input using AngularJS client-side and Spring MVC server-side validation.
π Event Carried State Transfer β Microservice Design Patterns
https://www.vinsguru.com/event-carried-state-transfer/
β‘οΈ @SpringFrameworkZone
https://www.vinsguru.com/event-carried-state-transfer/
β‘οΈ @SpringFrameworkZone
Vinsguru
Event Carried State Transfer - Microservice Design Patterns | Vinsguru
Learn Event Carried State Transfer Pattern to achieve the data consistency among the Microservices by using Spring Boot + Kafka.
π Building Reusable Mock Modules with Spring Boot
https://reflectoring.io/spring-boot-modules-mocking/
β‘οΈ @SpringFrameworkZone
https://reflectoring.io/spring-boot-modules-mocking/
β‘οΈ @SpringFrameworkZone
reflectoring.io
Building Reusable Mock Modules with Spring Boot
Having a modular codebase is nice, but wouldn't it be nicer to have a mock module for each real module to use in tests? Let's discuss a way to do that with Spring Boot!
π Apache Camel K and Quarkus on Kubernetes
https://piotrminkowski.com/2020/12/08/apache-camel-k-and-quarkus-on-kubernetes/
β‘οΈ @SpringFrameworkZone
https://piotrminkowski.com/2020/12/08/apache-camel-k-and-quarkus-on-kubernetes/
β‘οΈ @SpringFrameworkZone
Piotr's TechBlog
Apache Camel K and Quarkus on Kubernetes - Piotr's TechBlog
This article show how to integrate Apache Camel and Quarkus, and then use Apache Camel K to deploy such the application on Kubernetes.
π Difference Between BeanFactory and ApplicationContext
https://www.baeldung.com/spring-beanfactory-vs-applicationcontext
β‘οΈ @SpringFrameworkZone
https://www.baeldung.com/spring-beanfactory-vs-applicationcontext
β‘οΈ @SpringFrameworkZone
Baeldung on Kotlin
Difference Between BeanFactory and ApplicationContext | Baeldung
Learn about the significant differences between Spring's ApplicationContext and BeanFactory with practical examples