|
At the simplest level, you can write your HTML as JSP pages, and have Java Beans that connect to it, typically using servlets. You then run your code using something like Tomcat or JBoss or Glassfish.
Your Java code does its thing (talk to database, read files, calculate stuff, etc.) and then updates portions of the JSP pages, which are displayed to the user in any normal browser.
|