方法有很多的,一个简单的方法就是
<html:form action="createBook.do" method="GET">
   Boot Title:<html:text property="title"/>
   <bean:define id="tt" name="yourFormName" property="title" scope="request" toScope="request"/>    //scope的取值根据你actionMapping配置的scope,现假定是,name的取值和你在actionMapping配置的attribute属性有关,没有配置就和是name属性的取值。
request.getAttribute("tt"),可以取到了。</html:form>
这样你就可以