This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
need help in creating WorkflowClient instance #2619
Unanswered
laxmikantb
asked this question in
Q&A
Replies: 1 comment 2 replies
-
meet same error, any suggestion? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to create bean as - in spring boot app
@bean
public WorkflowClient workflowClient() {
WorkflowClient client = new WorkflowClient();
client.setRootURI(url);
return client;
}
but it fails with Caused by: java.lang.NoClassDefFoundError: javax/ws/rs/core/NoContentException
at com.netflix.conductor.client.http.ClientBase.(ClientBase.java:88) ~[conductor-client-3.3.6.jar:3.3.6]
at com.netflix.conductor.client.http.WorkflowClient.(WorkflowClient.java:92) ~[conductor-client-3.3.6.jar:3.3.6]
any help will be appreciated
Beta Was this translation helpful? Give feedback.
All reactions