This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Replies: 1 comment 5 replies
-
@DPain Can you share an example of how you were configuring this earlier? Current Spring boot implementation doesn't do much, and you should be able to configure Spring boot the way you want. Having a concrete example of what you are trying to do helps. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So prior to Conductor Server 3.0, I've been running Conductor Server with a Spring Boot wrapper project that would configure various settings prior and then fire up a thread that would basically call Conductor Server's Main method located in
com.netflix.conductor.bootstrap.Main
to start up the Conductor Server with necessary settings already configured.Since Conductor Server changed to Spring Boot, I can no longer access Conductor Server's equivalent main method for v3.0.0+ which is in
com.netflix.conductor.Conductor
. I don't have much knowledge about Spring Boot, but I assume its due to Conductor Server using Spring Boot.How can I access the main method of Conductor Server 3.0.0+? After further research I found that the approach I took before can no longer be done as per:
https://stackoverflow.com/questions/40089443/how-to-add-a-dependency-to-a-spring-boot-jar-in-another-project
If so, which approach would you recommend me to do?Thanks a bunch in advance :)
Beta Was this translation helpful? Give feedback.
All reactions