I made a .war file that prints strings to the console when I run in cmd
java -jar print.war
However, when I deploy this .war file to tomcat 8 by copying the file into the webapps folder:
C:\Program Files\Apache Software Foundation\Tomcat 8.5\webapps
I get this error whenever I go to http://localhost:8080/print
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Mon Dec 19 14:36:59 CST 2016
There was an unexpected error (type=Not Found, status=404).
No message available
Does that mean my deployment failed? Or is there something wrong with my .war file?
Thanks.
warfile includesweb.xmlorjavaxannotations ? - Shmulik Klein