按照此处的说明进行操作,但出现无法自动装配 WebApplicationContext 的错误。
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("applicationContext-test.xml")
@WebAppConfiguration
public class AjaxTest {
@Autowired
private WebApplicationContext webApplicationContext; //FAILS
但这编译:
@Autowired
ServletContext servletContext;
private WebApplicationContext webApplicationContext = WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext);
我不明白为什么。
编辑 它使用 maven 运行良好,这是我的编辑器 intellij 显示不正确的自动编译消息,实际上是一个错误。