Instruction to serve the frontend and ui? #124
WhistlerSupport
started this conversation in
General
Replies: 1 comment
-
Hi @WhistlerSupport, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Forgive me if I was just being ignorant. I tried
then visited http://localhost:8080/quartz-manager-ui/index.html
however I was unable to see any UI, just a spring Whitelabel Error Page.
it took me to
mvn package -Pbuild-webjar
in the quartz-manager-starter-ui project, (or the whole jar is availabe as download from maven central, just need to dig it out from the .m2 repo)then extracting the
META-INF\resources\quartz-manager-ui\
resources from the built jar,then
mvn package
in the project existing-quartz, and put in the quartz-manager-ui resourcesand a bunch of other pom manipulation mainly involving copy-dependencies
to finally allow me to run
java -cp existing-quartz-1.0-SNAPSHOT.jar it.fabioformosa.labs.existingquartz.ExistingQuartzApplication
and have it serve the UI in http://localhost:8080/quartz-manager-ui/index.html, as suggested in the Reach out the UI Console at URL section.Or would it be my tooling issue? I am using Eclipse, not sure if it did not include many of the STS features that would've allowed the UI to be serve easily without much manipulation.
Did I miss some obvious instructions? or can we improve the instruction of serving the frontend UI? I don't mind to help, but I want to know if the correct way lies along what I did.
Beta Was this translation helpful? Give feedback.
All reactions