All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.runtime.appcds.AppCDSUtil Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.runtime.appcds;

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.nio.file.Paths;

public class AppCDSUtil {

    /**
     * This is never meant to be used in a regular application run.
     * It is only referenced by the generated main with the purpose of
     * loading all the generated and transformed classes in order to give the AppCDS
     * generation process a larger set of classes to work with
     */
    public static void loadGeneratedClasses() throws IOException, ClassNotFoundException {
        try (BufferedReader br = new BufferedReader(new FileReader(Paths.get("generatedAndTransformed.lst").toFile()))) {
            String line;
            while ((line = br.readLine()) != null) {
                Class.forName(line, true, Thread.currentThread().getContextClassLoader());
            }
        } catch (ClassNotFoundException | IOException e) {
            System.err.println("Improperly configured AppCDS generation process launched");
            e.printStackTrace();
            throw e;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy