I woud like to improve my understanding on how
Java Application Servers handle files encodning.
In my understanding Application servers have to be able to correctly read our
static files:
.html
,.js
,.css
, etc.
in order to serve them to the browser.
So here's where the character encoding comes to play:
files encoded in a certain encoding are loaded by the application servers.
My question is:
Does JEE specification dictates what the character encoding
of these files must be ?
Is it configurable ?
Any help is appreciated.
Thanks.