struts异常_does not start with a "/" character
异常为 Path logon.jsp does not start with a "/" character
要在struts-config.xml中修改
input="logon.jsp"> ==>input="/logon.jsp">
path="login" ==>path="/login"
如:
<action
attribute="addbookForm"
input="/logon"
name="addbookForm"
path="/logon.jsp"
scope="request"
type="classmate.action.AddbookAction">
<forward name="success" path="/login.jsp" />
</action>