當前位置:編程學習大全網 - 源碼下載 - spring 怎麽寫web.xml

spring 怎麽寫web.xml

spring有三種啟動方式,使用ContextLoaderServlet,ContextLoaderListener和ContextLoaderPlugIn

spring3.0及以後版本中已經刪除ContextLoaderServlet 和Log4jConfigServlet

可以采用余下兩種啟動方式ContextLoaderListener和ContextLoaderPlugIn

建議使用ContextLoaderListener

N0:1

<!--推薦使用此種方式-->

<listener>

<listener-class>

org.springframework.web.context.ContextLoaderListener

</listener-class>

</listener>?

<!--contextConfigLocation在?ContextLoaderListener類中的默認值是?/WEB-INF/applicationContext.xml-->

<context-param>

<param-name>contextConfigLocation</param-name>

<param-value>/WEB-INF/applicationContext.xml</param-value>

<!--?<param-value>classpath:applicationContext*.xml</param-value>?-->

</context-param>

N0:2

?<!--spring3.0之後不再支持此種方式-->

<servlet>

<servlet-name>context</servlet-name>

<servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class>

<load-on-startup>1</load-on-startup>

</servlet>-->

N0:3

<!--要導入org.springframework.web.struts-3.0.5.RELEASE.jar包,在struts2.0及以後版本不支持此種方式加載spring-->

<plug-in?className="org.springframework.web.struts.ContextLoaderPlugIn">

<set-property?property="contextConfigLocation"?value="/WEB-INF/applicationContext.xml"/>

</plug-in>

  • 上一篇:AMBC的資金安全嗎?有人在這裏投資嗎?AMBC走上正軌了嗎?
  • 下一篇:如何用typescript制作網頁
  • copyright 2024編程學習大全網