I am helping in the development of an application, made with java and jsp. The links appear as .do instead of .jsp, even though the files are .jsp. The most I could find is that it has to do with struts or something like that extension, but my question is if I create a new .jsp file, how and where I have to configure it to open it later. I feel the ambiguity, to see if at least you can give me information about this extension.
Thanks to Pablo, I found the file "struts-config.xml", and I configured my jsp "mostrarCargos.jsp" in the following way, but it still does not work, so something else is missing.
<global-forwards>
<forward name="MostrarCargos"
path="/WEB-INF/page/administracion/mostrarCargos.jsp" />
</global-forwards>
<action-mappings>
<action path="/MostrarCargos" forward="/mostrarCargos.jsp" />
</action-mappings>