In my application.properties
file I have...
server.port=8086
server.connection-timeout=15000
I know that the file is being loaded
When I call the endpoint, the request never times out, it just hangs indefinitely.
server.connection-timeout
isn't a request timeout. It is a timeout for idle connections, i.e. those that have already had a request/response pair and on which the server is now awaiting a second request. It is essentially a server-side read timeout.