当我将JSF(myface)与SpringBoot1.5集成时
我应该在web.xml中使用哪个侦听器,它们之间有什么区别,请参见下文?
org.apache.myfaces.webapp.StartupServletContextListener org.springframework.web.context.ContextLoaderListener
答案 0 :(得分:0)
您应该在spring-boot中使用ContextLoaderListener。
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
根据建议in this article
要查找差异,请参阅以下链接。