Accessing Java class from HTML web app

4k Views Asked by At

I have a dynamic web project. In src folder I have Java class with couple of methods. Let us suppose index.html file has two buttons.on click of the button how can I call the Java class. Is there any possibility of doing so?

4

There are 4 best solutions below

0
On BEST ANSWER

Create servlet which will handle get/post requests, invoke your java code and return result.

http://docs.oracle.com/cd/E19857-01/819-6518/abxbh/index.html http://www.oracle.com/technetwork/java/servlet-142430.html

0
On

This cannot be done using simple html pages. You should be using JSP files instead which will let you make a call to your JAVA classes methods through directives.

This is common guess since you did not provide much relevant information about your project structure.

0
On

You have to use JSP. Here is a simple tutorial that could be useful to start. JSP tutorial

Good luck!

0
On

You should work with frameworks. I recommend you SPRING MVC. It`s very good and easy to use. For calling a java class you need jQuery and the framework.