I’m very new to web development.
I see people running grails app on tomcat, without grails being installed in that system! How this can be possible? How come tomcat can understand “grails” terminology and semantics?
Am I missing anything over here?
Thanks in advance.
Everything the app needs is in the WAR file that you deploy, including the Grails JARs. Tomcat merely hosts the app. It doesn’t need to know Grails terminology and semantics. By the time Tomcat knows about it, it’s already been translated into the things it knows: HTTP, HTML, etc.