Following this code:
@Component
public class ClassC extends ClassA<T> implements ClassB {
private String preferredDateTimeFormat = null;
My process is using this class after calling a request from client.
Per each request I want to keep the preferredDateTimeFormat
value, what is actually being made that, the preferredDateTimeFormat
variable is being used for all of my requests.
What can I do to solve it?