Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

spring-boot

  1. M

    sychronous webclient communication between springboot applications when deployed to aws ecs

    I have deployed my springboot microservice to aws ecs.But i found that my eureka server is not avaliable after deployed to aws ecs which make my apllication cannot communicate between microservice which should be work in my local machine.The application should on different port in the same ip...
  2. Y

    Prevent redirect on form submissions in thymleaf email template

    I have a spring boot application with REST APIs which are working fine. In the same project I have one API to send the email notifications to customers which uses the thymleaf for creating the HTML email template and I need to provide the option of Yes and No button and the customer will click...
  3. F

    My unit tests suddenly failed with "ClassNotFound" error

    My code unit tests suddenly failed to run with errors "ClassNotFound". When I ran them in IntelliJ, I got the errors below: java.lang.ExceptionInInitializerError at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at...
  4. F

    Springboot properties is not able to resolve global properties

    I have a below properties in my spring boot application.properties qs.cloud.region=${awsRegion} I am using ubuntu and tried below in terminal. export awsRegion=ap-southeast-1 When I did echo $awsRegion I am able to get the value in terminal But when start my spring boot application I am...
  5. R

    How to handle configuration When Spring Boot config server itself is down?

    I'm new to the spring cloud config server. Consider a scenario where we have 10 spring boot microservice fetching configurations from the Spring Boot Cloud Config. I was wondering How the 10 spring boot microservices will work when the Spring Boot Cloud Config itself is down? Can someone answer...
  6. T

    Multiple "And/Or" Condition Expressions spring data jpa

    I want to have a filter query using spring data JPA. condition is something like this: (A or B or C) and D when I want to use Spring Data JPA I should change it to be like below (The precedence order is And then Or, just like Java.): (A and D) or (B and D) or (C and D) the code in the Spring...
Top