Hello, how are you? I have a JAVA application that acts as an HTTP server, and what I would like to do is, add all the FRONT-END files of the application in the same jar, and when I transport the jar file, they can be written in the same location from where find the files of the page so when requesting these files are present on the hard drive, for example: I have the following FRONT-END files
/www/index.html
/www/jp/app.js
/www/dependencias/*.js
All these files would be compressed inside the JAR. Then when the JAR application would run, it verifies that the files are not found, the non-existent creates them. So that the program transport is simple, once it is executed, the files appear in the same directory where it is executed. Is it possible?