我的 Intellij IDE 告诉我无法解析我的 Bean 定义的范围“租户”。
虽然它不会阻止我部署和运行我的应用程序,但它看起来有点乱。我有没有办法告诉 Intellij 如何解决这个问题?
我尝试将coreserver.jar(包含TenantScope类的 jar)添加到我的模块的依赖项中,但这不起作用。
Intellij 的检查'Spring Scopes'显示了该错误。我必须让这个检查以某种方式知道租户范围是在另一个模块的 XML 文件中声明的。我也尝试将这个其他模块添加为petsplacecore模块的依赖项,但这也不起作用。
这是我的屏幕的样子:
租户范围在模块yacceleratorstorefront的文件web-application-config.xml中声明,如下所示:
<bean class="org.springframework.beans.factory.config.CustomScopeConfigurer">
<property name="scopes">
<map>
<entry key="tenant" value="de.hybris.platform.spring.TenantScope"/>
</map>
</property>
</bean>