In my project folder,We have 2 java files under ContextPath/WEB-INF/Classes/*.class
names are App1.class
and App2.class
If I want to Run App1.class
,Just i need to trigger URL in browser.
http://localhost:8080/Mapping/App1
in the same way,if you want to trigger App2.class
,use the following link
http://localhost:8080/Mapping/App2
I want to trigger App2
from App1
,means If you trigger App1
with corresponding URL in browser,It will be trigger App2
.
I don't want to any response also.
How can I do this.
can anyone help me.
Thanks.