How to import Java class inside JSP file?
<%@page import="javaname.java"%>
is not working in Eclipse Neon.
Already defined full path still not working.
We have an existing project that the java class is inside of WEB-INF/classes instead of src folder but when we try to do it on another project, we cannot import anymore using the same syntax (<%@ page import="package.javaclass"%>)
Java class:
JSP: