簡體   English   中英

Spring Scope注釋值

[英]Spring Scope annotation value

Spring框架是否提供String常量來替換下面示例注釋中的“prototype”字符串文字值?

@Service
@Scope("prototype")
public class CustomerService 
{
......
}

謝謝!

您可以使用Spring的BeanDefinition中的范圍常量:

  • SCOPE_SINGLETON
  • SCOPE_PROTOTYPE

例如

@Scope(BeanDefinition.SCOPE_PROTOTYPE)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM