Skip to content

Failed to instantiate [feign.Client] #1197

Open
@anup5708

Description

@anup5708

Describe the bug
I am facing one issue while upgrading the version as below.

Spring cloud version from 2021.0.5 to 2024.0.1
Spring boot starter parent from 2.7.5 to 3.4.5
In my configuration class I have written

@Bean public Client method1() throws Exception{ Client a = new Client.Default(getSocketFactory(keystore,pass,truststore,pass), new NoopHostnameVerifier()); } return a;

If I write the same code as below it works

@Bean public static Client method1() throws Exception{ Client a = new Client.Default(getSocketFactory(keystore,pass,truststore,pass), new NoopHostnameVerifier()); } return a;

When I declare the static keywords on the method it started working and getting no issue, please assist.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions