ssh2 struts2 There is no Action mapped for namespace / and action name

去掉struts2.xml中的<package标签里的 namespace


<package namespace="/com.abc"   ....> 
       <action name="test"   .... 
</package> 


就改成
<package    ....> 
       <action name="test"   .... 
</package> 


黑色头发:http://heisetoufa.iteye.com/

你可能感兴趣的:(namespace,struts)