-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use ThinLauncher as a dependency #173
Comments
Is the launcher still useful/relevant for a spring cloud function project which already runs with spring boot 3.x ?
|
I'm not sure that question is relevant to this issue. |
Yes, its not ideal here :-). I created issues more on the topic "spring cloud function" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it possible to use a Spring Boot project using the Thin Launcher as a dependency on another project?
I.e It would be useful if the Maven plugin generated a class that can be called to load all the dependencies into the ClassLoader of the dependant project.
Currently this doesn't seem possible, I have tried using reflection to start the ThinJarWrapper but that results in the ThinJarLauncher not being able to find the Main class:
The ideal situation would be to be able to call a class that would load everything into the classpath without actually launching the main method of the Spring Boot application - since that can now be handled by the dependant project.
The text was updated successfully, but these errors were encountered: