jsp 中要写表单 现在2种写法为什么一个参数导入了,另一个没导入为空?

 <tr>
                            <td class="table_add_left"><div id="description_div">备注:</div></td>
                            <td colspan="3" class="table_add_right"><html:textarea
                                    cols="60" rows="4" title="备注" styleId="description"
                                    readonly="true" property="testDto.description" /></td>
                        </tr>
                        <tr>
                            <td class="table_add_left">备注2:</td>
                            <td class="table_add_right" colspan="3">
                                ${testDto.description }</td>
                        </tr>
                        备注显示不出数据而备注2 能显示!



                        有朋友帮忙了,问题解决了,是因为标签问题
                        html:textarea 标签 换成 普通标签textarea 就好了!  

图片说明

                    ![图片说明](https://img-ask.csdn.net/upload/201504/24/1429862655_736081.jpg)

第二个你没有输入控件作为容器是不会提交的。。和第一个一样增加输入控件作为容器

 <input type="text" name="des2" value=" ${testDto.description }"/>