本文主要是介绍jsf+spring配置的关键环节,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
第一步:要在web.xml文件上部加入下列信息
<servlet>
<servlet-name>context</servlet-name>
<servlet-class>
org.springframework.web.context.ContextLoaderServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
第二步:要在faces-config.xml文件的上部加入下列信息
<application>
<variable-resolver>
org.springframework.web.jsf.DelegatingVariableResolver
</variable-resolver>
</application>
在完成以上两步的配置后就可运行调试spring框架程序了
这篇关于jsf+spring配置的关键环节的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!