markdown 通过ApplicationContext中获取豆

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 通过ApplicationContext中获取豆相关的知识,希望对你有一定的参考价值。

```java
@Component
public class StaticContextAccessor {
    private static StaticContextAccessor instance;
    
    @Autowired
    private ApplicationContext applicationContext;
    
    @PostConstruct
    public void registerInstance() {
        instance = this;
    }

    public static <T> T getBean(Class<T> clazz) {
        return instance.applicationContext.getBean(clazz);
    }
}
```

以上是关于markdown 通过ApplicationContext中获取豆的主要内容,如果未能解决你的问题,请参考以下文章

spring applicationContext

Springset注入(掌握)

加载BeanFactory

jupyter通过notedown使用markdown

markdown基础使用技巧

Gulp Front Matter + Markdown 通过 Nunjucks