winfetch
winfetch copied to clipboard
Application yielding HTTP 500 due to missing javax/servlet/jsp/jstl/core/Config class
After fighting through the parameter naming issue, I tried to open the application in the browser and the process is returning an HTTP 500 error. For context, I followed the process outlined in the README for getting things up and running and have it numerous issues along the way.
Here's the repository where I was playing around with getting this up and running: https://github.com/mjpitz/indeedeng-proctor-helm/tree/master/docker/proctor-webapp
Adding this dependency to to proctor-webapp/pom.xml appears to fix it:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
Checking if there is any other different approach we want to take.
Can we add this to the pom.xml?
Internally, this has been done, however it seems the sync of changes from internal to public github seems to be broken right now.
Would be great if we could work in open source instead of relying on the github-sync tool. That thing frequently breaks. I know many other teams have move off of that tool due to its fragility.