2
我想向servletcontext添加一些值,但不知道如何在spring中獲取對象。任何人都可以請幫助如何在Spring中創建ServletContext
我想向servletcontext添加一些值,但不知道如何在spring中獲取對象。任何人都可以請幫助如何在Spring中創建ServletContext
試試這個:
@Autowired
ServletContext servletContext;
實現ServletContextAware接口將使Spring注入上下文。
@Controller
public class ServicesImpl implements Services, ServletContextAware{
private ServletContext context;
public void setServletContext(ServletContext servletContext) {
this.context = servletContext;
}
這沒有工作......是否有某種樣本代碼,你可以給我。 – zDroid
當你說它不起作用 - 發生了什麼? –