I'm using HP Fortify SCA and Apps 4.20 for my project which used Struts2 spring Hibernate. The report said my project has
Race Condition: Singleton Member Field
problem with the controllers.
However, Struts2 is thread safe, because it create a new instance when a new request come. Furthermore, I set spring annotation in the controller
@Controller
@Scope("request")
I don't know how to solve this problem. Did it misjudge, or there are problem with my project.