java-通过注释和xml上下文连接Spring bean

java-通过注释和xml上下文连接Spring bean,第1张

概述我有以下Spring服务:@Service public class Worker { @Autowired private MyExecutorService executor; @Autowired private IRun run; private Integer startingPoint; /

我有以下Spring服务:

@Servicepublic class Worker {    @autowired    private MyExecutorService executor;    @autowired    private IRun run;    private Integer startingPoint;    // Remainder omitted}

现在,我想通过.propertIEs文件加载startingPoint.

是否可以通过注释和xml上下文同时连接Spring服务?

也许是这样的:

<bean ID="worker" >    <property name="startingPoint">        <value>${startingPoint}</value>    </property></bean>

StartingPoint是通过xml上下文文件进行连接的,其他所有内容都将自动进行连接.最佳答案是!这绝对是有可能的,如果您不能使用一点点XML,这是一个不错的方法.只需将所有带注释的字段保留为未指定状态,它们就会自动神奇地注入.

尽管只是为了清楚起见,但我相信您将必须为Integer字段提供设置器. Spring不想直接到达并通过XML描述符设置字段.

总结

以上是内存溢出为你收集整理的java-通过注释和xml上下文连接Spring bean 全部内容,希望文章能够帮你解决java-通过注释和xml上下文连接Spring bean 所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1233933.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存