Which programming language has extension .do

File Extension

File Extension Problem Overview


Just wondering which programming languages is used on the web pages with the extension ".do"

File Extension Solutions


Solution 1 - File Extension

According to FileInfo, the file extension is for Java Servlets.

Solution 2 - File Extension

Strictly speaking, you can't tell for sure just by looking at the extension. I can configure a web server to interpret *.do URLs as referring to PHP files or even executables and run it accordingly. In fact, *.do URLs may not even refer to files at all! It really does depend on how the server is configured.

Solution 3 - File Extension

That is typically not so much a programming language feature but a framework feature: apps developed with Apache Struts (see http://struts.apache.org/) typically use that extension.

Solution 4 - File Extension

.do extension is used to build a J2EE enterprise application using Struts and dao factory method that is latest technology framework to build EE applications. It is much faster and efficient than JSP and JSF.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRomanView Question on Stackoverflow
Solution 1 - File ExtensionMerlyn Morgan-GrahamView Answer on Stackoverflow
Solution 2 - File ExtensionIn silicoView Answer on Stackoverflow
Solution 3 - File ExtensionFemiView Answer on Stackoverflow
Solution 4 - File ExtensionUsmanView Answer on Stackoverflow