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?
Accessing Java class from HTML web app
4k Views Asked by user3007385 At
4
There are 4 best solutions below
0

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

You have to use JSP. Here is a simple tutorial that could be useful to start. JSP tutorial
Good luck!
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