gpt4 book ai didi

java - 是否可以在构造函数上使用@Resource?

转载 作者:IT老高 更新时间:2023-10-28 13:51:16 25 4
gpt4 key购买 nike

我想知道是否可以在构造函数上使用 @Resource 注释。

我的用例是我想连接一个名为 bar 的最终字段。

public class Foo implements FooBar {

private final Bar bar;

@javax.annotation.Resource(name="myname")
public Foo(Bar bar) {
this.bar = bar;
}
}

我收到一条消息,指出此位置不允许使用 @Resource。有没有其他方法可以连接 final 字段?

最佳答案

来自@Resource的来源:

@Target({TYPE, FIELD, METHOD})
@Retention(RUNTIME)
public @interface Resource {
//...
}

这一行:

@Target({TYPE, FIELD, METHOD})

表示这个注解只能放在Classes、Fields和Methods上。 CONSTRUCTOR不见了。

关于java - 是否可以在构造函数上使用@Resource?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5831128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com