弹簧3@Component和静态工厂方法
2022-09-03 05:39:36
如果我正在编写一个静态工厂方法来创建对象,我如何为该工厂类使用“@Component”注释并指示(带有一些注释)应调用的静态工厂方法以创建该类的bean?以下是我的意思的伪代码:
@Component
class MyStaticFactory
{
@<some-annotation>
public static MyObject getObject()
{
// code to create/return the instance
}
}