Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将新工厂动态绑定到当前请求范围?我希望在当前 HTTP 请求结束时自动删除绑定。
工厂的提供方法可以使用@RequestScope 进行注释,然后工厂提供的东西将在 RequestScope 中(因此每次 RequestScope 更改时都应该调用工厂提供方法)。
这是你要问的吗?
这也取决于你如何绑定它。您是在使用该类的自动分析器之一,还是在使用绑定 API?
甚至 Factory本身(不是提供方法)也可以在 RequestScope 中,在这种情况下,只要 RequestScope 更改,就会创建 Factory 实现的新实例