Igor
Igor
Getting exception when using Spring: ``` java.lang.NoClassDefFoundError: org/eclipse/jetty/webapp/WebAppContext at java.base/java.lang.ClassLoader.defineClass1(Native Method) at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1017) at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:151) at java.base/jdk.internal.loader.BuiltinClassLoader.defineClass(BuiltinClassLoader.java:821) at java.base/jdk.internal.loader.BuiltinClassLoader.findClassOnClassPathOrNull(BuiltinClassLoader.java:719) at java.base/jdk.internal.loader.BuiltinClassLoader.loadClassOrNull(BuiltinClassLoader.java:642) at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:600) at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522) at org.springframework.boot.web.embedded.jetty.JettyWebServer.handleDeferredInitialize(JettyWebServer.java:216) at...
Just push 'Submit new issue'. You don't need to do anything else.
I personally would like to have AbiCoder support from https://docs.ethers.io/v5/api/utils/ Thank you
Hello, I'm using the following method to sign messages: https://github.com/simolus3/web3dart/blob/master/lib/src/credentials/credentials.dart#L51 The method itself works fine and other parties are able to verify signature generated by it. But it's not clear...
Thank you for addressing https://github.com/pratikbaid3/flutter_client_sse/issues/21 I have a use-case, where infinite retry might not be an ideal option. On server 401 response I want to refresh JWT token, so it...
POC PR for Addressing https://github.com/pratikbaid3/flutter_client_sse/issues/26 and https://github.com/pratikbaid3/flutter_client_sse/issues/25
**Title:** Support for sending custom static metadata in gRPC proxy calls **Is your feature request related to a problem? Please describe.** I initially looked for a way to add static...
``` public ScheduleRange(int start, int end, int step) { Preconditions.checkState(start >= 0 && step >= 0 && step >= 0); ``` Why do we need to check step twice?
### Description Currently, Spring Data Redis allows `RedisTemplate` to participate in transactions by enabling `setEnableTransactionSupport(true)`. However, declarative transaction management (`@Transactional`) requires a `PlatformTransactionManager`. The current documentation assumes that applications already...