【发布时间】:2018-04-26 16:04:46
【问题描述】:
我正在尝试更新旧的 Spring 应用程序。具体来说,我试图将所有 bean 从旧的 xml 定义的形式中提取出来,并将它们拉成 @SpringBootApplication 格式(同时大大减少了定义的 bean 的总数,因为它们中的许多不需要豆子)。我当前的问题是我不知道如何使 ServletContext 可用于需要它的 bean。
我当前的代码如下所示:
package thing;
import stuff
@SpringBootApplication
public class MyApp {
private BeanThing beanThing = null;
@Autowired
private ServletContext servletContext;
public MyApp() {
// Lots of stuff goes here.
// no reference to servletContext, though
// beanThing gets initialized, and mostly populated.
}
@Bean public BeanThing getBeanThing() { return beanThing; }
@PostConstruct
public void populateContext() {
// all references to servletContext go here, including the
// bit where we call the appropriate setters in beanThing
}
}
我返回的错误:Field servletContext in thing.MyApp required a bean of type 'javax.servlet.ServletContext' that could not be found.
那么...我错过了什么?有什么我应该添加到路径中的吗?我需要实现一些接口吗?我自己无法提供 bean,因为重点是我正在尝试访问我自己没有的 servlet 上下文信息(getContextPath() 和 getRealPath() 字符串)。
【问题讨论】:
标签: java spring spring-boot autowired postconstruct