Jeeppler

Results 199 comments of Jeeppler

All import statements of `javax.persistence` need to be changed to `jakarta.persistence`.

Find and count all `javax.persistence*` imports: `grep -I -R "import javax.persistence*" . | wc -l` Change them: `find . -name "*.java" -type f -exec sed -i 's/import javax.persistence/import jakarta.persistence/g' {}...

Spring Boot 3.0 is available: https://github.com/spring-projects/spring-boot/releases/tag/v3.0.0 Release Notes: https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.0-Release-Notes 2.7.x to 3.0.x migration guide: https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.0-Migration-Guide In addition, to requiring Java 17 #1736, Spring Boot 3.0 uses the Jakarta EE 10...

Apache Commons Fileupload does not support JakartaEE at the moment. They will release a Version 2, which will support Jakarta EE: https://github.com/apache/commons-fileupload#where-can-i-get-the-latest-release. We have to wait for the release.

Here are more details: - https://lists.apache.org/thread/kknw9bn2t8dzpbwojpg2hcqbgqf1qyzc. - https://issues.apache.org/jira/projects/FILEUPLOAD/issues/FILEUPLOAD-309?filter=allopenissues

Workaround: https://mvnrepository.com/artifact/org.apache.wicket/wicket-commons-fileupload/10.0.0-M1

Wrote email to the apache commons fileupload developer on the mailing list. He want's to create a release by the end of the weekend.

VOTE to release the new version of apache commons fileupload: https://lists.apache.org/thread/27gkqk3928bw9qcqyhkgw9tzqxllpw67

What exactly is the issue with GPU passthrough and Xen?

I thought one of the main reasons to switch from Fedora to Debian are reproducible builds. Debian made and make a lot of progress in this area. The other question...