你struts-config.xml中action的类地址跟spring中定义的不一样吧
就是struts-config.xml中那个type啊
仔细在看一下,那儿歌type在struts-config.xml中是指明了action在项目中的实际地址的
ps:你报的错是地址错误

解决方案 »

  1.   

    在struts-config.xml 中
    type="org.springframework.web.struts.DelegatingActionProxy"
    这个类是Spring 里的代理类..相当于我后面写的那个SpringProxyAction类.只不过一个是手写,一个是Spring自带的.现在的问题就是手写的没有问题,用Spring自带的就有问题我在想是不是这段代码加载applicationContext.xml时候的出了问题?<plug-in 
         className="org.springframework.web.struts.ContextLoaderPlugIn" > 
          <set-property property="contextConfigLocation" 
              value="/WEB-INF/classes/applicationContext.xml" / > 
    </plug-in > 
      

  2.   

    <message-resources   parameter= "org.awc.struts.ApplicationResources "   / > 
    把这句代码放在<plug-in.../>之前
      

  3.   

    象“Servlet action is not available“
    这样的问题太普遍了,也太深奥了。我敢保证,没有一个人敢打包票一定能解决这种问题。
    也许这种问题和工具或者jar包有关也未可知。
      

  4.   

    象“Servlet action is not available“
    这样的问题太普遍了,也太深奥了。我敢保证,没有一个人敢打包票一定能解决这种问题。
    也许这种问题和工具或者jar包有关也未可知。
      

  5.   

    换换版本吧.或者看看林信良的Spring技术手册,看看书上是怎么配置的.