Results 47 issues of Andrej Fink

"Include" support for logback.groovy. http://jira.qos.ch/browse/LOGBACK-1002

With `com.h2database:h2:2.2.224` I receive: ``` java.lang.NoClassDefFoundError: org/h2/value/ValueByte at org.apache.ignite.internal.processors.query.h2.twostep.msg.GridH2ValueMessageFactory.registerAll(GridH2ValueMessageFactory.java:40) at org.apache.ignite.internal.managers.communication.IgniteMessageFactoryImpl.(IgniteMessageFactoryImpl.java:72) at org.apache.ignite.internal.managers.communication.GridIoManager.start(GridIoManager.java:482) at org.apache.ignite.internal.IgniteKernal.startManager(IgniteKernal.java:1774) at org.apache.ignite.internal.IgniteKernal.start(IgniteKernal.java:1008) at org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start0(IgnitionEx.java:1725) at org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start(IgnitionEx.java:1647) at org.apache.ignite.internal.IgnitionEx.start0(IgnitionEx.java:1089) at org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:625) at org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:547) at org.apache.ignite.Ignition.start(Ignition.java:300) at...

- latest Ebean - ⇒ javax → jakarta - Gradle 8.7 (JDK 21 support) - Lombok (very compact code: getters and setters are generated) - Google's Error-Prone (static analysis tool...

With JDK21 we have Virtual Threads: they are cheap, and you can block them without any thoughts Could you add an option to Semaphore based Bulkhead strategies (e.g. timeout: long...

TwoSemaphoreBulkhead https://github.com/smallrye/smallrye-fault-tolerance/issues/987

Ebean is a great project and has almost everything one needs or wants. The only advantage of Spring Data JPA left is its auto-generated repositories (The programmer declares an interface,...

I generate ID in my App in java code, so my id column is declared in entity class as: ``` @Id Long id; ``` but DdlGenerator generates such columns as:...

MessageState.java:26: error: An unhandled exception was thrown by the Error Prone static analysis plugin. public enum MessageState { ^ Please report this at https://github.com/google/error-prone/issues/new and include the following: error-prone version:...

`$` character has special meaning only in front of `{` i.e: `${my.var.name}` If alone, `$` is (must be) harmless. But one has to escape this harmless `$` very hard :-(...

JDK 24 isn't a LTS version. But it IS a very important version! The JDK team has managed to fix the issue of virtual threads' pinning: synchronized(lock){ IO operations }...