@RequestScope does not work. Request mix data

28 Views Asked by At

I have built a relatively small Java application based on SAP Cloud SDK/Spring-Boot.

Each request should be unique. That's why I have provided each class I use with @RequestScope (In despair).

Now, when testing with several users in parallel, we noticed that the data is partially mixed.

I can't find any other scopes n the settings/POMs etc.

What else could it be? The cache from the remote system? I am not doing anything other than loading data from 3 different data, saving/mapping it in a model and then returning it to the requester.

My model header looks like:

@Data
@Component
@RequestScope
public class PartnerModel {
0

There are 0 best solutions below