如何在Spring中检索appContext?我现在尝试了几种不同的方法,没有任何作用。
例如:
public class MapperTester {
@Autowired
private ApplicationContext appContext;
public MapperTester() {
// appContext == null here :(
}
}
答案 0 :(得分:0)
实现ApplicationContextAware应该有效,但如果您需要查看某些内容的详细信息,请将您的日志级别提高到org.springframework
包的DEBUG(或者可能只是.beans
}或.context
子包。)