Ivica Loncar
Ivica Loncar
To quote StringSubstitutor javadoc: In some complex scenarios you might even want to perform substitution in the names of variables, for instance ${jre-${java.specification.version}} StringSubstitutor supports this recursive substitution in variable...
Hi, while developing apollo GraphQL client I have noticed that it picks up guava library that is bundled with payara embedded. As a result I got: `Cause: com.google.common.collect.FluentIterable.toSortedList(Ljava/util/Comparator;)Lcom/google/common/collect/ImmutableList;` I've updated...
With recent spring-boot-actuator-autoconfigure-3.2.4.jar BeanPostProcessorChecker produces warnings when we apply MetricsAutoConfiguration: ``` 2024-04-25 17:59:57.980 [main] {} WARN org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'distributedFeaturesConfiguration' of type [com.xebialabs.xlrelease.features.distributed.DistributedFeaturesConfiguration$$SpringCGLIB$$0] is not eligible for getting processed by...
Hi, I don't know if the title is correct, so I will try to describe issue. I've added HikarcCP packages to exclusions but I was surprised when I got: ```...
Please provide us with the custom label decorator on the gradle project that will display project version (similar to maven version label decorator).
In https://github.com/jhipster/jhipster-loaded/blob/master/core/src/main/java/io/github/jhipster/loaded/JHipsterReloaderThread.java#L131 : ``` } else if (typename.startsWith(dtoPackageName)) { ``` NPE will be thrown if dtoPackageName is null. if's should contain guard and look something like: ``` } else if...
Simple expression `for i in 1..1000000000 return i * i`can cause performance issue or even bring service down. Is there a way/plan to limit memory that can be allocated via...