JSF与SpringBoot1.5集成

时间:2018-11-10 14:26:03

标签: spring-boot jsf

当我将JSF(myface)与SpringBoot1.5集成时

我应该在web.xml中使用哪个侦听器,它们之间有什么区别,请参见下文?

org.apache.myfaces.webapp.StartupServletContextListener org.springframework.web.context.ContextLoaderListener

1 个答案:

答案 0 :(得分:0)

您应该在spring-boot中使用ContextLoaderListener。

<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

根据建议in this article

要查找差异,请参阅以下链接。

org/springframework/web/context/ContextLoaderListener

org/apache/myfaces/webapp/StartupServletContextListener.