Tomáš Poledný

Results 31 comments of Tomáš Poledný

Hi I spend wholed day with debuging and trying to resolve it and now I know where is the issue. But I do not know how to fix it in...

And here is exactly the same issue with ASM: https://stackoverflow.com/questions/47169763/asm-5-2-java-lang-linkage-error-when-instrumenting-apachhttpclient

I can confirm that this MR fix our problem with JMockit and Jacoco too. So with this MR I can use a newer version of Jacoco (I tested it with...

Do you have a code example? What do you use `MockUp` or `@Injectable` etc?

I don't see a difference between a null in field injection and a null in constructor injection. I think that JMockit should support both. JMockit has support for null in...

> "create it easy in a simple unit test" is not the reality in typical real-world projects. The one I currently develop has lots of Spring DI beans having multiple...

Hi I had/have the same issue with Sleuth. I resolved it with `BeanPostProcessor` which runs before Sleuth/Brave `TracingConnectionFactoryBeanPostProcessor` . See: ```java /** * We need to disable cache producers because...

Here is a workaround if you do not want to disable Sleuth for async (`spring.sleuth.async.enabled=false`). You have to exclude autoconfiguration `TraceAsyncCustomAutoConfiguration` and wrap your executor with `LazyTraceExecutor`: ```yml spring: autoconfigure:...

It would be great to introduce a new Lambda which changes all new lines with `\n` Something like: ```java public class ReplaceNewLineLambda implements Mustache.Lambda { @Override public void execute(Template.Fragment fragment,...

I implemented this solution in our services and it makes things worse than better because there is also Spring Security Observation. The security observation is not affected (because) this predicate...