I want to write a server side code in Java to access DB. A request like http://localhost/name=jack, will access database and return information of jack.
I want to use Apache or lighttpd webserver. However, most pages about these servers’ configuration are about JavaEE, I just want to use javaSE to implement this program, how can I do this?
Please you java web start, which uses java SE with a plain HTTP server, you will not need a web container/Java EE here.