Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Springフレームワークは、以下の注釈例の「プロトタイプ」文字列リテラル値を置き換える文字列定数を提供しますか?
@Service @Scope("prototype") public class CustomerService { ...... }
ありがとう!
Spring のBeanDefinitionのスコープ定数を使用できます。
例えば
@Scope(BeanDefinition.SCOPE_PROTOTYPE)