Can I create one singleton property in spring boot?
When I use this:
public class MessengerPlatformCallbackHandler {
@Scope(value = "singleton")
private Map<String, Object> conversationID = new HashMap<>();
I got the erro: @Scope not applicable to field
tks