struts 学习问题

来源:互联网 发布:飞豆软件 编辑:程序博客网 时间:2024/06/03 17:41

 1.Exception creating bean of class Book

struts-config.xml 为:

<struts-config>
      <form-beans>
        <form-bean name="bookForm" type="Book"/>     
      </form-beans>
      <global-forwards>
        <forward   name="bookCreated"  path="/BookView.jsp"/>       
      </global-forwards>

      <action-mappings>
        <action path="/createBook"  type="BookAction" name="bookForm" scope="request" input="/CreateBook.jsp">
       
         </action>
      </action-mappings>
    </struts-config>

由于Book未extends ActionForm引起的