How to call Java class in Jsp

前端 未结 3 1649
清歌不尽
清歌不尽 2021-01-04 13:45

Hi i am trying to call regular java class in jsp page and want to print some on jsp page when i am trying to do i am not getting any output

Here is my code

3条回答
  •  孤街浪徒
    2021-01-04 14:40

    Just to complete all the opportunities, You could also use the <%= opertator like:

    <%
     MyClass tc = new MyClass ();
    %>
    
    
    

    <%= tc.testMethod(); %>

    and just for resume, the key points:

    1. include class with <%@ page import tag
    2. use the class as usual in .java behaviour
    3. print data with out.print, <%= or jstl out tag

提交回复
热议问题