springboot @Scope("prototype")注解的类,在不同的 bean 中被作为成员变量 @Autowired 的话,各成员变量间应该不同吧?

2020-01-18 17:14:15 +08:00
 Newyorkcity

就比如

@Component
@Scope("prototype")
Class A {
  private int count;
}

@Controller
Class Controller1 {
  @Autowired
  A a;
}

@Controller
Class Controller2 {
  @Autowired
  A a;
}

这两个 controller 中的成员变量 a 应该不一样吧,就比如说其中的 count 取决于控制器内发生了什么,可能是不一样的。

谢谢解答

1089 次点击
所在节点    问与答
0 条回复

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/638976

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX