Struts和Spring整合配置的一點小問題

2021-04-12 18:11:32 字數 679 閱讀 3551

在struts-config.xml檔案裡面如下配置時候:

<

plug-in

classname

="org.springframework.web.struts.contextloaderplugin"

>

<

set-property

property

="contextconfiglocation"

value

="/web-inf/dataaccesscontext-local.xml,

/>

plug-in

>

執行action裡面的這兩條語句:

如果是在web.xml檔案裡面這樣配置:

<

context-param

>

<

param-name

>

contextconfiglocation

param-name

>

<

param-value

>

/web-inf/dataaccesscontext-local.xml,

param-value

>

context-param

>

則可以正常取到上面的例項。

整合struts和spring時

連線點 struts2的action由spring產生 大致如下 首先加入各自所需的jar包,連線時要加入struts2 spring plugin x.x.x.jar 1.修改web.xml加入struts的filter struts2 org.apache.struts2.dispatcher....

spring和struts的整合

struts 2框架整合spring很簡單,下面是整合的步驟。1.複製檔案。複製struts2 spring plugin x x x.jar和spring.jar到web inf lib目錄下。其中的x對應了spring的版本號。還需要複製commons logging.jar檔案到web inf...

Spring整合Struts詳解

spring雖然也提供了自已的mvc元件,但一來spring的mvc元件過於繁瑣,二來是struts的使用者眾多,因此,很多專案還是選擇使用spring整合struts框架,而且spring可以無縫的整合strtus框架,二者結合成乙個更實際的j2ee開發平台 使用spring的web應用時,不用手...