I have added an audio html5 tag with the right source for the audio file.
<audio controls="controls">
<source src="/WEB-INF/classes/newAudio.wav" type="audio/wav"/>
</audio>
When I run my spring web application, the player cant find the source. I am using Chrome.
The audio file is created in the location /WEB-INF/classes/newAudio.wav
Should I change the location of this file that is created?
WEB-INF is not normally accessible. Have you tried to move it to another folder?