当前位置: 代码迷 >> J2EE >> Struts 中的 plug-in 到底什么时候才会有用呢?解决方案
  详细解决方案

Struts 中的 plug-in 到底什么时候才会有用呢?解决方案

热度:227   发布时间:2016-04-22 01:17:14.0
Struts 中的 plug-in 到底什么时候才会有用呢?..
在Struts-config.xm中加入
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
  <set-property property="contextConfigLocation" value="/WEB-INF/applicationContext.xml"/>
  </plug-in>
此时就会找不到.do 出现下面的错误
type Status report
message Servlet action is not available
description The requested resource (Servlet action is not available) is not available.
plug-in 这是一个插件程序的意思. 
但在此声明的ClassName是不是加载Struts-config.xml就会构造这个类对其属性赋值?
还在想..就算 上面的设想成立.
也不会因找不到.do而出错呀
因为点.do还是由Struts本身管理
在此..本人很困惑..想必大家也发现到这个了吧..
希望能人.解答! (分不多)

------解决方案--------------------
顶一下!
------解决方案--------------------
建议用ContextLoaderListener
ContextLoaderPlugIn容易对日后的openSessionInViewFilter的应用造成麻烦
------解决方案--------------------
貌似我在整合spring时用到了~~
  相关解决方案