dwr配置
<dwr>
<allow>
<create creator="spring" javascript="juser">
<param name="beanName"
value="/user" />
<include method="isExist" />
</create>
</allow>
</dwr>struts配置
  <form-beans >
    <form-bean name="userForm" type="y2ssh.lepai.form.UserForm" />

  </form-beans>
 
  <action-mappings >
    <action
      attribute="userForm"
      input="/index.jsp"
      name="userForm"
      parameter="method"
      path="/user"
      scope="request"
      type="org.springframework.web.struts.DelegatingActionProxy">
      <forward name="manager" path="/WEB-INF/jsp/manager.jsp" />
      <forward name="admin" path="/WEB-INF/jsp/admin.jsp" />
    </action>  </action-mappings>
  <plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
  <set-property property="contextConfigLocation" value="WEB-INF/applicationContext.xml" />
  </plug-in>spring配置
<!-- 配action -->
<bean name="/user" class="y2ssh.lepai.action.UserAction">
<property name="userBiz" ref="userBiz" />
</bean>运行时,报501错误
HTTP Status 501 - Error. Details logged to the console--------------------------------------------------------------------------------type Status reportmessage Error. Details logged to the consoledescription The server does not support the functionality needed to fulfill this request (Error. Details logged to the console).
--------------------------------------------------------------------------------
望高人指点