为什么 Javawebapps 使用.do 扩展? 它是从哪里来的?

我一直想知道为什么这么多 Java 开发人员使用。”。作为其 Web 控制器(MVC)资源的扩展。例子: http://example.com/register.do

它似乎并不像我在 SpringMVC 和 Struts 项目中看到的那样是特定于框架的。 Where did this ".do" extension practice come from. Why was this done instead of no extension? 我觉得我错过了 Java 世界的备忘录。

就我个人而言,我不喜欢延期。

98900 次浏览

常见的做法是将 struts servlet 映射到 * 。在 web.xml 中执行以将 URL 传递给 struts servlet。例如:

<!-- Standard Action Servlet Mapping -->
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>

There is really no reason except convention for this. If you use no extension you need to do some magic to handle images and other static content in a way that doesn't send them to your sevlet. Often this gets done at a load balancer of a fronting web server.

To my knowledge, this convention has been spread by Struts1. The user guide puts it like this:

5.4.2 Configure the ActionServlet Mapping

注意: 本节中的材料不是特定于 Struts 的 Servlet 映射的配置是 defined in the Java Servlet 规范。本节描述 the most common means of configuring a 申请。

有两种常见的方法 定义将成为 由控制器 servlet 处理—— 前缀匹配和扩展 一个适当的映射条目 对于每种方法将被描述 下面。

前缀匹配意味着 所有开始(在上下文之后)的 URL 路径部分) 传递给这个 servlet entry might look like this:

<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>/do/*</url-pattern>
</servlet-mapping>

这意味着将请求 URI 设置为 匹配所描述的 /logon路径 earlier might look like this:

http://www.mycompany.com/myapplication/do/logon

where /myapplication is the context 应用程序所处的路径 部署。

另一方面,扩展映射, 将请求 URI 与操作匹配 Servlet 基于这样一个事实,即 URI 以一个句点结尾,后跟一个 定义的字符集 例如,JSP 处理 servlet 是 mapped to the *.jsp pattern so that it is called to process every JSP page 使用 *.do 扩展名(意思是「做」 Something”) ,映射条目将 就像这样:

<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>

和请求 URI 来匹配 前面描述的 /logon路径可能 就像这样:

http://www.mycompany.com/myapplication/logon.do

WARNING - The framework will not operate correctly if you define more 多于一个 <servlet-mapping>元素 用于控制器 servlet。

警告 -如果您使用的是1.1版本以来的新模块支持,则 应该意识到,只有扩展 支持映射。

而且我认为这个惯例一直保持着(有时甚至在替换了 Struts1之后,不更改 URL仍然保持着,有时仅仅是因为人们对它感到满意)。