Calling a java method in jsp

前端 未结 5 464
刺人心
刺人心 2020-11-28 10:50

I have a java class which performs some operations on files. Since the java code is huge I don\'t want to write this code in jsp. I want to call the methods in jsp whenever

5条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-28 11:22

    Although I'll not advice you to do any java calls in JSP, you can do this inside your JSP:

    <%
       //Your java code here (like you do in normal java class file.
    %>
    
    
    

    In case you're wondering, the <% ... %> section is called scriptlet :-)

提交回复
热议问题