我需要为mockservletcontext设置真实路径,以便我可以使用
访问路径getServletContext()方法。getRealPath(“/").
这是我在Junit中使用的以下代码
MockServletContext context = new MockServletContext("/Users/pradeep/Desktop/", null);
SomeImpl userService = (SomeImpl) applicationContext.getBean("someBean");
userService.setServletContext(context);
但仍然是getServletContext()。getRealPath(“/”)返回null。
有关为mockservlet设置路径的建议吗?