如何在不使用@Controller
的情况下将处理程序注入注释控制器(@Autowire
)?
答案 0 :(得分:2)
您当然可以始终在XML中配置自动装配:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
default-autowire="byType">
<!-- all beans here will be autowired, including those
found by <contect:component-scan /> -->
</beans>
但您可能必须为属性提供Setter方法。
@Resource
注释(当然还有JSR-330的@Inject
,感谢@Bozho)注释。