PavlidisLab / Gemma

Genomics data re-analysis
Apache License 2.0
23 stars 6 forks source link

Target Java 11 bytecode #893

Open arteymix opened 12 months ago

arteymix commented 12 months ago

The shaded cglib implementation in Spring 3 appears not to be capable of dealing with Java 11 bytecode and I filed a few issues for that: #887, #888.

It's very likely that we will have to migrate to Spring 4 before benefiting from Java 11 bytecode.

arteymix commented 12 months ago

If we manage to avoid class-based proxy which require cglib, we might be able to target Java 11 with Spring 3. I'll investigate this avenue.

arteymix commented 3 months ago

It's unfortunately not possible to do that. We create class-based proxies almost everywhere for auditing and securing methods.