jodd.jar
springside-joddform.jar
//---------JSP页面
<%@ taglib prefix="jodd" uri="http://www.springside.org.cn/jodd_form"%>
<jodd:form bean="automobile" scope="session">
</jodd:form>
//---------后台
import jodd.bean.BeanUtil;
AutomobileSalesInfo automobile = new AutomobileSalesInfo();
BeanUtil.load(automobile, request);
有空完善```