在没有web.xml的Spring Boot Applications中设置上下文参数的正确方法是什么?

时间:2019-01-17 13:32:08

标签: spring spring-boot

我正在尝试在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");
    }
}

0 个答案:

没有答案