I defined class Test in test1.jsp
<%! public final class Test{ } %>
This class actually has implicity package names, for example if I include it in test2.jsp, the class name is org.apache.test2.Test or the like. Is there a way to define packaged class Test in test1.jsp so that I can reuse it and pass it across different jsps?