how to reference a java .class file from a JSP page?

前端 未结 5 2051
再見小時候
再見小時候 2020-12-19 23:12

I have the JSP file (/page.jsp) in the root of my app directory. I want to use this class located in /WEB-INF/classes/Helper.class.

I tried using the JSP page impo

5条回答
  •  眼角桃花
    2020-12-19 23:26

    The following has to work <%@ page import="com.*" %>.

    Check the documentation of the J2EE container you are using. If you are using a J2EE Sun Certified Container you shouldn't have an issue with the page import directive.

    See JSP Directives.

提交回复
热议问题