我有一个在app中使用的请求范围的bean。现在我需要实现一些预定义的配置bean。我试过两种方式:
InitializingBean
实施ApplicationListener<ApplicationReadyEvent>
听众但问题是这个配置bean中的代码使用erquest-scoped bean,每次我得到一个:
Caused by: java.lang.IllegalStateException: No thread-bound request found: Are you referring to request attributes outside of an actual web request, or processing a request outside of the originally receiving thread
?
有什么方法可以模拟请求吗?