In a URI, what does the suffix ".do" stand for?
Java Servlets.
...Or more specifically, Struts, and it means "do" as in "perform an action", URLs are usually mapped to the Controllers within an MVC architecture, and "do" is just a convention, any URL can be mapped (and other languages/frameworks could use the same URL structure), having ".do" doesn't do anything special.
Java Servlets