0

我目前正在创建一个使用 Struts2 标记进行表单提交的 Web 应用程序。我看到的一个问题是,当我查看页面源代码时,它清楚地显示了我的代码,特别是 struts2 如何创建表单。像这样的东西。

<tr>
    <td class="tdLabel"><label for="register_userBean_username" class="label">User Name:</label></td>
    <td
><input type="text" name="userBean.username" value="" id="register_userBean_username" class="class java.util.HashMap"/></td>
</tr>

      <tr>
    <td class="tdLabel"><label for="register_userBean_password" class="label">Password:</label></td>
    <td
><input type="text" name="userBean.password" value="" id="register_userBean_password" class="class java.util.HashMap"/></td>
</tr>

有没有办法阻止用户看到 struts2 为我的表单创建的底层代码?

4

2 回答 2

0

我认为没有办法在不破坏网站的情况下隐藏它。这些信息似乎对于使网站正常运行至关重要。

于 2012-12-17T12:53:56.533 回答
0

我同意@Theolodis。您无法隐藏为您创建的 struts 标记的 html 代码。struts 标签的目标是通过提供扩展为所需 html 代码的标签来最小化您的视图页面编码。以及您将如何阻止用户查看其浏览器上的代码。

于 2012-12-17T17:20:07.040 回答