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.
我一起使用 spring3、struts2 和 hibernate3。我在 com.top 包中有一个 samplemanager.java 文件,在 net.top 包中有另一个 test.java 文件。在这个 test.java 文件中,我尝试使用 @ 使用 samplemanager.java Autowired.But 它抛出空指针异常任何人都可以告诉我一个解决方案。
您必须在应用程序上下文文件中为这两个包配置组件扫描:
<context:component-scan base-package="com.top.*, net.top.*" />
检查您的 samplemanager 类是否已注释,以及您是否在配置文件中扫描类路径以查找带注释的 bean。如果没有注释,则必须在配置文件中定义 bean。