Since upgrading to the latest Vertx 3.2.2, StaticHandler returns static css, html, etc. resources from the filesystem using Windows-1252 encoding. Previous Vertx version did not tell any encoding.
Now, all utf-8 data (such as iconfont icon chars) are garbled.
I have tried to manually add UTF8 BOM to the beginning of a file, still StaticHandler serves as Windows-1252 (but at least the browser is able to recognize the utf marker and render well).
How can I either force a preferred character encoding, or make statichandler recognize the file encoding?