Update
Considering all your non successful tests, you might want to verify that Tomcat is actually listening on port 8080 as expected - please execute netstat -ln | grep 8080, which should yield approximately the following output:
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN
While Tomcat failing to bind to port 8080 should result in a respective error message in the logs in principle, I've encountered a case already, where it apparently didn't, see cherouvim's comment on my answer to ehcache auto-discovery (via multicast) between 2 instances on the same host. The problem discussed there might exist on your system as well, insofar many Java application servers and similar services bind to port 8080 by default - have you installed anything out of the ordinary on your system eventually, e.g. some custom software installed without the Ubuntu package manager?
Good luck!
when I put the public DNS os my instance in the navigator
(http://ec2-176-34-239-3.eu-west-1.compute.amazonaws.com:8080/), it
doesn't find anything
Please note the emphasized part of the Tomcat URL you are trying to access: Most likely you have not adjusted your EC2 security groups (which kind of resembles the 'firewall' on EC2) to allow inbound traffic on TCP port 8080 (which is the default port Tomcat and many other Java application servers are binding to).
Consequently you need to enable access port 8080 for yourself at least, as e.g. explained in Adding Rules to the Default Security Group regarding ports 80 and 22 (simply replace these with 8080).
I probably don't have to stress this, but a thorough understanding of the security architecture of the (EC2) hosting environment an application is deployed to is very important for running public internet services of any kind - here are some resources: