0
I wanted to know how Spring tracks these files. So far I know that Spring MVC has the DispatcherServlet
that is responsible for sending the requests to the controllers that respond to such URL. But how does Spring return/render the correct page (View)? Where is recorded their location?
I’ve seen on some Github projects that devs declare on a .xml
one InternalResourceViewResolver
with a prefix and a suffix, but when I fetch this prefix (the supposed directory) has no View file, they are either a directory above, or elsewhere.