You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: