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.
我有一个使用 Spring、JSF 和 Hibernate 的项目。这个项目已经开发了2个月。有很多模块可以工作。我在一个新包中创建了 ManagedBean,并从 xhtml 中对其进行了引用,但我得到了“非常常见的错误:”
Target Unreachable, identifier 'someName' resolved to null
于是找了找这个错误,才发现我的配置是正确的。我将我的课程复制到另一个包中,现在......它可以工作了。
有谁知道这是为什么?
我知道是什么问题!
在我的 applicationContext.xml 中,我定义了
<context:component-scan base-package="com.framework.comun" />
所以我在课堂上的注释
com.sistema.comun.presentacion.controller
不会被认出来!
谢谢