您的位置:首页 > 编程语言 > Java开发

关于spring中注解和xml混合使用

2017-03-28 20:43 375 查看
可以混合用。文档有说明:

Spring can accommodate both styles and even mix them together.

混合用的话,有个先后顺序,xml配置会覆盖annotation。原文:

Annotation injection is performed before XML injection, thus the latter configuration will override the former for properties wired through both approaches.

也就是说对于同一个bean 不能注解完成部分属性的设定 xml完成部分属性的设定

xml会覆盖注解
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐