Run a Java application in a web browser

后端 未结 5 1908
礼貌的吻别
礼貌的吻别 2021-01-11 11:18

I am relatively new to Java and have a Java application consisting of a couple of packages and a number of classes. I want to be able to run this application in a web browse

5条回答
  •  迷失自我
    2021-01-11 11:48

    The easiest way for you will be to use a servlet. What you need:

    • Apache Tomcat (Or any other Servlet container)
    • Knowledge of what a servlet is (basically a class that extends from servlet, like httpservlet)

提交回复
热议问题