VO对象打印输出逗号

时间:2020-01-31 08:18:13

标签: java spring jsp

我用VO对象打印输出逗号做了一个简单的小型Spring项目。 我不知道为什么该对象打印出来。 我没有在任何地方输入逗号

@RequestMapping(value = "/", method = RequestMethod.POST)
public String postHome(@ModelAttribute TestVo vo2, Model model) {
    model.addAttribute("test" , vo2);
    return "test";
}

这是我的控制器代码

<form method="post">
    <table>
        <thead>
            <tr  width="200">
                <th colspan="2">input name</th>
            </tr>
        </thead>
        <tbody>
            <tr  width="200">
                <td>name</td>
                <td><input type="text" name="name" id="name"></td>
            </tr>
            <tr  width="200">
                <td colspan="2"><input type = "submit"> </td>
            </tr>
        </tbody>
    </table> 
</form>

这是我jsp中的表单标签

<body>
    ${test.name }
</body>

最后,我在test.jsp中打印出来

 ,zozo

和我的代码结果

那是什么逗号。...

0 个答案:

没有答案