How is the HTML that is generated by components represented in the repository?
My knowledge of Sling and AEM is improving, but I'm still confused about a lot.
I have components and templates that produce HTML using JSP. The last part of the path looks like this in CRX/DE:
something/jcr:content/contentnode
contentnode has sling:resourceType=foundation/components/parsys
jcr:content has sling:resourceType=/apps/myapp/components/siteoutput/default/topicpage
something has jcr:primaryType=cq:Page
If I click on something, html is loaded into the browser with the last part of the path being something.html
So is the html only created when someone loads the node something into a web browser, or is it stored somewhere? I mean aside from any web server/web app caching.

