Grails (6.2.3) generated war file not running on tomcat 10/11
I have created a grails project using grails version 6.2.3.
After this this added the quartz job dependencies and then create the class for schedule job.
Command :
grails create-app testApp
grails create-job runjob
in the create class added the "println" line to print the date.
verified the working using "grails run-app", it is printing the output on console
Executing RunJob at Tue Feb 18 12
1245 EST 2025
now used the "grails war" to generate the war file.
When I deploy the war file on...