I'm new to spring boot and aws. I built a simple application with 2 endpoints that works fine when I run it locally on my mac.
I followed the instructions from Spring while deploying my application. I setup an environment, generated a war file, and uploaded it. Before generating my war file, I changed the packing to "war" in my pom.xml file and changed the scope of spring-boot-starter-tomcat. My beanstalk environment is running tomcat 8 and java 8 so under my project properties in my pom.xml file, I also set the Java version to 1.8 and tomcat version to 8.0.23.
My war file uploads without an issue and my environment health is ok, but when I try to test one of the endpoints I keep getting a 404 error. I'm really struggling with this and any help is appreciated.