Re: Re: Deadlock in Java9.getDefaultImportClasses() ?

2024-04-10 Thread Jörg Prante
Am Dienstag, dem 09.04.2024 um 14:34 + schrieb Mutter, Florian: > > > We found the issue: On the cluster with the new kubernetes version > the application did start on a smaller node. The node has only 8 > cores. The common ForkJoinPool was only 1/4th of the size. It seems > that the applicat

Re: SQL enhancement request

2024-03-22 Thread Jörg Prante
Hi Steve, just use this Sql.execute method https://docs.groovy-lang.org/latest/html/api/groovy/sql/Sql.html#execute(java.lang.String,groovy.lang.Closure) to send arbitrary statements and decide by the isResultSet flag in the closure whether you have to obtain a result set from a select query, or

Re: Re: Extra linefeeds with groovy.xml.XmlUtil.serialize

2023-04-06 Thread Jörg Prante
Hi Erick, Groovy's XmlUtil is using javax.xml.transform.Transformer OutputKeys.INDENT property. Transformer transformer = factory.newTransformer(); transformer.setOutputProperty(OutputKeys.INDENT, "yes"); In Java 9, the indentation behavior changed. Please note https://bugs.openjdk.org/browse