How spring boot accesses a jsp page as a static file

how spring boot accesses a jsp page as a static file

just like accessing a js file, just show the code, and you don"t need to parse

.
Mar.16,2021

create a new test.jsp, in the / src/main/resources/public/ directory and access test.jsp directly.
is different from the js file, because the browser does not parse the jsp page, so only the downloaded page appears, and the

of the jsp content cannot be displayed.
Menu