我正在尝试在Spring Boot App中设置一个上下文参数。我没有web.xml文件,因此我尝试通过实现WebApplicationInitializer进行尝试。看来参数被忽略了。设置contex参数的正确方法是什么?
public class ApplicationInitializer implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext)
throws ServletException {
servletContext.setInitParameter("primefaces.THEME", "admin");
}
}