is there a possibility to encrypt or just don’t display the Get Parameters in the Internetbrowser when im using JavaServlets on Tomcat?
that means for example: localhost/main?id=3
should be displayed like this: localhost/main or localhost/main?6puu4YjzScxHsv9t….
Is there a simple and fast solution? Does this make sense?
Thx for your tips..
You could use POST instead of GET on your HTML form. This will turn
localhost/main?id=3intolocalhost/main. The parameteridwill still be passed and you should be able to retrieve its value in the same way, on the server-side.