我是编译时出错的,import javax.servelet.http.*;
import org.apache.struts.action.*;
import books.Book;public final class BookAction extends Action
{public ActionForward perform(ActionMapping mapping,
ActionForm form, HttpServletRequest req,
HttpServletResponse res)
{    String title = req.getParameter("title");
    Book book = new Book();
    book.setTitle( title );
    System.out.println("After creation of book: " + book.getTitle() );
    req.setAttribute("BOOK", book);
    return mapping.findForward("bookCreated");
}
}
编译后。提示错误:
  package org.apache.struts.action does not exist
也就是说编译器未找到struts的包,但是我已经将struts.jar拷到当前的应用的lib路径下
是不是还要做什么设置,